Skip to content

Commit baf1e33

Browse files
committed
update dev-deps
1 parent 902f764 commit baf1e33

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

pyproject.toml

+3-4
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,10 @@ fiona = "^1.9.1"
2727
click = "^8.1.3"
2828

2929
[tool.poetry.group.dev.dependencies]
30-
black = "^23.1.0"
31-
pytest = "^7.2.2"
30+
pytest = "^7.4.3"
3231
pytest-cov = "^4.0.0"
33-
pyright = "^1.1.298"
34-
ruff = ">=0.0.261,<0.0.286"
32+
pyright = "^1.1.336"
33+
ruff = "^0.1.5"
3534

3635
[build-system]
3736
requires = ["poetry-core"]

src/mojxml/process/__init__.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -69,5 +69,4 @@ def files_to_feature_iter(
6969
"""Iterate features from given XML/ZIP files."""
7070
features_iter = executor.iter_process(iter_content_xmls(src_paths))
7171
for features in features_iter:
72-
for feature in features:
73-
yield feature
72+
yield from features

0 commit comments

Comments
 (0)