Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 authored Nov 4, 2023
1 parent aec489a commit ecf712c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion comm/base_comm.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def __del__(self) -> None:

# publishing messages

def open(
def open( # noqa: A003
self, data: MaybeDict = None, metadata: MaybeDict = None, buffers: BuffersType = None
) -> None:
"""Open the frontend-side version of this comm"""
Expand Down
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,10 @@ line-length = 100

[tool.ruff.lint]
select = [
"A", "B", "C", "E", "F", "FBT", "I", "N", "Q", "RUF", "S", "T",
"A", "B", "C", "E", "F", "I", "N", "Q", "RUF", "S", "T",
"UP", "W", "YTT",
]
ignore = [
# FBT002 Boolean default value in function definition
"FBT002", "FBT003",
]
unfixable = [
# Don't touch print statements
Expand Down

0 comments on commit ecf712c

Please sign in to comment.