We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d11c032 commit 539aef4Copy full SHA for 539aef4
2 files changed
ipykernel/datapub.py
@@ -29,7 +29,7 @@
29
class ZMQDataPublisher(Configurable):
30
"""A zmq data publisher."""
31
32
- topic = topic = CBytes(b"datapub")
+ topic = CBytes(b"datapub")
33
session = Instance(Session, allow_none=True)
34
pub_socket = Any(allow_none=True)
35
parent_header = Dict({})
pyproject.toml
@@ -277,6 +277,9 @@ ignore = [
277
"PTH123",
278
# use `X | Y` for type annotations, this does not works for dynamic getting type hints on older python
279
"UP007",
280
+ "UP031", # Use format specifiers instead of percent format
281
+ "PT023", # Use `@pytest.mark.skip` over `@pytest.mark.skip()`
282
+ "PT001", # autofixable: Use `@pytest.fixture` over `@pytest.fixture()`
283
]
284
unfixable = [
285
# Don't touch print statements
0 commit comments