We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5277588 commit 3fd8380Copy full SHA for 3fd8380
1 file changed
AGENTS.md
@@ -190,7 +190,7 @@ def test_sync(
190
191
### Imports
192
193
-- Use namespace imports: `import enum` instead of `from enum import Enum`
+- Use namespace imports for stdlib: `import enum` instead of `from enum import Enum`; third-party packages may use `from X import Y`
194
- For typing, use `import typing as t` and access via namespace: `t.NamedTuple`, etc.
195
- Use `from __future__ import annotations` at the top of all Python files
196
0 commit comments