Skip to content

Commit 1c33611

Browse files
author
Amin Farjadi
committed
bugfix(lint): Ignore lint error FA102, irrelevant for python >=3.9
1 parent 63fd201 commit 1c33611

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ruff.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ lint.ignore = [
3838
"B904", # raise-without-from-inside-except - disabled temporarily
3939
"PLC1901", # Compare-to-empty-string - disabled temporarily
4040
"PYI024",
41-
"A005"
41+
"A005",
42+
"FA102" # project must require python >= 3.9 making this error obsolete
4243
]
4344

4445
# Exclude files and directories

0 commit comments

Comments
 (0)