Skip to content

Commit

Permalink
Merge pull request #45 from codeforjapan/fix/issue-44-add-ignore-e701
Browse files Browse the repository at this point in the history
Fix/issue 44 add ignore e701
  • Loading branch information
osoken authored Feb 24, 2024
2 parents ae1aaf8 + faa7f9a commit 51f7684
Show file tree
Hide file tree
Showing 2 changed files with 3 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
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ addopts = ["-sv", "--doctest-modules", "--cov=birdxplorer", "--cov-report=xml",
testpaths = ["tests", "birdxplorer"]
filterwarnings = [
"error",
"ignore:The \\'app\\' shortcut is now deprecated. Use the explicit style \\'transport=WSGITransport\\(app=\\.\\.\\.\\)\\' instead\\.",
]

[tool.black]
Expand All @@ -79,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 51f7684

Please sign in to comment.