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 3ded7a6 commit 7c8d223Copy full SHA for 7c8d223
pyproject.toml
@@ -179,4 +179,8 @@ ban-relative-imports = "all"
179
"ARG001", # Allow unused arguments in tests (like pytest fixtures)
180
]
181
"__init__.py" = ["F401"] # Init files can be empty
182
-"dspy/__init__.py" = ["I001", "E402", "F405"]
+"dspy/__init__.py" = [
183
+ "I001", # Allow unsorted or unformatted imports (isort)
184
+ "E402", # Allow imports not at the top of the file (needed for certain __init__ patterns)
185
+ "F405", # Allow undefined names from wildcard imports (common in __init__ files)
186
+]
0 commit comments