File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 2929class ZMQDataPublisher (Configurable ):
3030 """A zmq data publisher."""
3131
32- topic = topic = CBytes (b"datapub" )
32+ topic = CBytes (b"datapub" )
3333 session = Instance (Session , allow_none = True )
3434 pub_socket = Any (allow_none = True )
3535 parent_header = Dict ({})
Original file line number Diff line number Diff line change @@ -277,6 +277,9 @@ ignore = [
277277 " PTH123" ,
278278 # use `X | Y` for type annotations, this does not works for dynamic getting type hints on older python
279279 " 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()`
280283]
281284unfixable = [
282285 # Don't touch print statements
You can’t perform that action at this time.
0 commit comments