Skip to content

Commit c4a213b

Browse files
committed
ignore D419 for errors.py
1 parent a8ee157 commit c4a213b

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

fishjam/agent/agent.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ class OutgoingTrack:
6262
6363
This is created by :func:`Agent.add_track`.
6464
"""
65+
6566
id: str
6667
"""The global identifier of the track."""
6768
session: AgentSession

fishjam/errors.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66

77
class HTTPError(Exception):
8+
""""""
9+
810
@staticmethod
911
def from_response(response: Response[Error]):
1012
"""@private"""

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ convention = "google"
8686
[tool.ruff.lint.extend-per-file-ignores]
8787
"fishjam/_openapi_client/**" = ["E501", "D"]
8888
"fishjam/events/_protos/**" = ["D"]
89+
"fishjam/errors.py" = ["D419"]
8990
"tests/**" = ["D"]
9091
"scripts.py" = ["D"]
91-
"" = ["D"]
9292

9393

9494

0 commit comments

Comments
 (0)