Skip to content

Commit

Permalink
fix: mypy ignore statement
Browse files Browse the repository at this point in the history
  • Loading branch information
sushichan044 committed Aug 5, 2024
1 parent fd5c1e9 commit 4cce8c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/birdxplorer_common/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class PostgresStorageSettings(BaseSettings):
port: int = 5432
database: str = "postgres"

@computed_field # type: ignore[misc]
@computed_field # type: ignore[prop-decorator]
@property
def sqlalchemy_database_url(self) -> str:
return PostgresDsn(
Expand Down

0 comments on commit 4cce8c8

Please sign in to comment.