We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 902f764 commit baf1e33Copy full SHA for baf1e33
pyproject.toml
@@ -27,11 +27,10 @@ fiona = "^1.9.1"
27
click = "^8.1.3"
28
29
[tool.poetry.group.dev.dependencies]
30
-black = "^23.1.0"
31
-pytest = "^7.2.2"
+pytest = "^7.4.3"
32
pytest-cov = "^4.0.0"
33
-pyright = "^1.1.298"
34
-ruff = ">=0.0.261,<0.0.286"
+pyright = "^1.1.336"
+ruff = "^0.1.5"
35
36
[build-system]
37
requires = ["poetry-core"]
src/mojxml/process/__init__.py
@@ -69,5 +69,4 @@ def files_to_feature_iter(
69
"""Iterate features from given XML/ZIP files."""
70
features_iter = executor.iter_process(iter_content_xmls(src_paths))
71
for features in features_iter:
72
- for feature in features:
73
- yield feature
+ yield from features
0 commit comments