Skip to content

Commit

Permalink
fix(pyproject): add E701 to flake8 ignore list
Browse files Browse the repository at this point in the history
  • Loading branch information
osoken committed Feb 23, 2024
1 parent 4c3f0e6 commit faa7f9a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions birdxplorer/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -449,8 +449,7 @@ class Message(BaseModel):
message: str


class ParticipantId(UpperCased64DigitsHexadecimalString):
...
class ParticipantId(UpperCased64DigitsHexadecimalString): ...


class EnrollmentState(str, Enum):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ target-version = ['py310']

[tool.flake8]
max-line-length = 120
extend-ignore = "E203"
extend-ignore = "E203,E701"

[tool.mypy]
python_version = "3.10"
Expand Down

0 comments on commit faa7f9a

Please sign in to comment.