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 c8e39af commit 4e6c81bCopy full SHA for 4e6c81b
interfaces/cython/cantera/data.py
@@ -16,7 +16,7 @@ def list_data_files(ext: str = ".yaml") -> list[str]:
16
:return:
17
List of input data files.
18
"""
19
- data_files = set()
+ data_files: set[str] = set()
20
for folder in get_data_directories():
21
here = Path(folder)
22
if folder == ".":
interfaces/cython/cantera/reaction.pyi
@@ -1,6 +1,5 @@
1
-from collections.abc import Iterable, Sequence
+from collections.abc import Callable, Iterable, Sequence
2
from typing import (
3
- Callable,
4
Generic,
5
TypeAlias,
6
TypedDict,
0 commit comments