Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pre-commit.ci] pre-commit autoupdate #203

Open
wants to merge 2 commits into
base: devel
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ci:
autoupdate_branch: devel
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.5.5
rev: v0.6.7
hooks:
- id: ruff
args:
Expand Down
2 changes: 1 addition & 1 deletion examples/notebooks/a-basics.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"metadata": {},
"outputs": [],
"source": [
"from gepetto.corbaserver import gui_client, start_server, Color\n",
"from gepetto.corbaserver import Color, gui_client, start_server\n",
"\n",
"start_server(args=[])\n",
"gui = gui_client(window_name=\"tuto\")"
Expand Down
2 changes: 1 addition & 1 deletion examples/notebooks/b-display-force-or-velocities.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"metadata": {},
"outputs": [],
"source": [
"from gepetto.corbaserver import gui_client, start_server, Color\n",
"from gepetto.corbaserver import Color, gui_client, start_server\n",
"\n",
"start_server(args=[])\n",
"gui = gui_client(window_name=\"tuto\")\n",
Expand Down
3 changes: 2 additions & 1 deletion examples/pyplugin/pythonwidget.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from gepetto.corbaserver import Client
from PythonQt import Qt, QtGui

from gepetto.corbaserver import Client


class _NodeCreator(QtGui.QWidget):
"""This class represents one special tab of the new QDockWidget."""
Expand Down