Skip to content

Commit 0f64552

Browse files
committed
Add sub-types to noxconfig.py
1 parent 391df4b commit 0f64552

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

noxconfig.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ class Config:
5151
"project-template",
5252
"idioms",
5353
)
54-
python_versions: Iterable = ("3.9", "3.10", "3.11", "3.12", "3.13")
55-
exasol_versions: Iterable = ("7.1.9",)
54+
python_versions: Iterable[str] = ("3.9", "3.10", "3.11", "3.12", "3.13")
55+
exasol_versions: Iterable[str] = ("7.1.9",)
5656
plugins: Iterable[object] = (UpdateTemplates,)
5757
# need --keep-runtime-typing, as pydantic with python3.9 does not accept str | None
5858
# format, and it is not resolved with from __future__ import annotations. pyupgrade

0 commit comments

Comments
 (0)