Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/issue 44 add ignore e701 #45

Merged
merged 2 commits into from
Feb 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading