Skip to content

Commit 07b6ad0

Browse files
committed
Merge branch 'list-of-files' of github.com:lnevay/testdata into list-of-files
2 parents 4d166aa + 1b290c3 commit 07b6ad0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/g4edgetestdata/core.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ class G4EdgeTestData:
2626
...
2727
>>> abs_path = d['convert/T001_geant4Box2Fluka.inp']
2828
"""
29+
2930
def __init__(self):
3031
self._default_git_ref = "main"
3132
self._repo_path = Path(
@@ -87,7 +88,7 @@ def _build_list_of_available_data(self):
8788
"""
8889
self.files = []
8990
root = Path(self._repo_path / "data")
90-
for dirpath, dirnames, filenames in os.walk(root):
91+
for dirpath, _dirnames, filenames in os.walk(root):
9192
for f in filenames:
9293
common = os.path.relpath(dirpath, root)
9394
rp = PurePath(common) / f

0 commit comments

Comments
 (0)