Skip to content

Commit 04e1d75

Browse files
authored
Fix lint (#1058)
fix lint
1 parent a7455bc commit 04e1d75

File tree

14 files changed

+5
-18
lines changed

14 files changed

+5
-18
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ repos:
3333
- id: black
3434

3535
- repo: https://github.com/charliermarsh/ruff-pre-commit
36-
rev: v0.0.165
36+
rev: v0.0.177
3737
hooks:
3838
- id: ruff
3939
args: ["--fix"]

examples/embedding/ipkernel_wxapp.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
import wx
2525
from internal_ipkernel import InternalIPKernel
2626

27-
2827
# -----------------------------------------------------------------------------
2928
# Functions and classes
3029
# -----------------------------------------------------------------------------

ipykernel/embed.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
from .kernelapp import IPKernelApp
1212

13-
1413
# -----------------------------------------------------------------------------
1514
# Code
1615
# -----------------------------------------------------------------------------

ipykernel/gui/gtk3embed.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
gi.require_version("Gtk", "3.0")
2424
from gi.repository import GObject, Gtk
2525

26-
2726
# -----------------------------------------------------------------------------
2827
# Classes and functions
2928
# -----------------------------------------------------------------------------

ipykernel/gui/gtkembed.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
import gobject
2121
import gtk
2222

23-
2423
# -----------------------------------------------------------------------------
2524
# Classes and functions
2625
# -----------------------------------------------------------------------------

ipykernel/heartbeat.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
import zmq
2121
from jupyter_client.localinterfaces import localhost
2222

23-
2423
# -----------------------------------------------------------------------------
2524
# Code
2625
# -----------------------------------------------------------------------------

ipykernel/inprocess/channels.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
from jupyter_client.channelsabc import HBChannelABC
99

10-
1110
# -----------------------------------------------------------------------------
1211
# Channel classes
1312
# -----------------------------------------------------------------------------

ipykernel/inprocess/client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
# Local imports
2828
from .channels import InProcessChannel, InProcessHBChannel
2929

30-
3130
# -----------------------------------------------------------------------------
3231
# Main kernel Client class
3332
# -----------------------------------------------------------------------------

ipykernel/inprocess/ipkernel.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
from .constants import INPROCESS_KEY
1919
from .socket import DummySocket
2020

21-
2221
# -----------------------------------------------------------------------------
2322
# Main kernel class
2423
# -----------------------------------------------------------------------------

ipykernel/inprocess/socket.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
import zmq
99
from traitlets import HasTraits, Instance, Int
1010

11-
1211
# -----------------------------------------------------------------------------
1312
# Dummy socket class
1413
# -----------------------------------------------------------------------------

0 commit comments

Comments
 (0)