We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5912e5 commit a465804Copy full SHA for a465804
ruff.toml
@@ -34,8 +34,6 @@ fixable = [
34
]
35
ignore = [
36
"TD",
37
- 'E712', # TrueFalseComparison # sqlalchemy
38
- "E711", # none-comparison # sqlalchemy
39
"EM101", # raw-string-in-exception
40
"TRY003", # raise-vanilla-args
41
"ANN401", # dynamically-typed-expression
@@ -107,3 +105,7 @@ convention = "google"
107
105
108
106
[lint.flake8-type-checking]
109
exempt-modules = ["typing", "typing_extensions"]
+runtime-evaluated-base-classes = [
+ "pydantic.BaseModel",
110
+ "sqlalchemy.orm.DeclarativeBase",
111
+]
0 commit comments