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.
2 parents 4d166aa + 1b290c3 commit 07b6ad0Copy full SHA for 07b6ad0
src/g4edgetestdata/core.py
@@ -26,6 +26,7 @@ class G4EdgeTestData:
26
...
27
>>> abs_path = d['convert/T001_geant4Box2Fluka.inp']
28
"""
29
+
30
def __init__(self):
31
self._default_git_ref = "main"
32
self._repo_path = Path(
@@ -87,7 +88,7 @@ def _build_list_of_available_data(self):
87
88
89
self.files = []
90
root = Path(self._repo_path / "data")
- for dirpath, dirnames, filenames in os.walk(root):
91
+ for dirpath, _dirnames, filenames in os.walk(root):
92
for f in filenames:
93
common = os.path.relpath(dirpath, root)
94
rp = PurePath(common) / f
0 commit comments