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 5384272 commit ef68fc0Copy full SHA for ef68fc0
ohsome_quality_analyst/indicators/base.py
@@ -157,8 +157,8 @@ def get_template(self) -> None:
157
directory = get_module_dir(
158
"ohsome_quality_analyst.indicators.{}".format(indicator_key)
159
)
160
- file = os.path.join(directory, "/metadata.yaml")
161
- with open(file[0], "r") as file:
+ file = os.path.join(directory, "metadata.yaml")
+ with open(file, "r") as file:
162
raw = yaml.safe_load(file)
163
metadata = {}
164
for k, v in raw.items():
0 commit comments