Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkralidis committed Feb 4, 2025
1 parent bed5b6d commit ef526da
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pywcmp/pygeoapi_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@

import os

print(os.listdir(THISDIR))
print(os.listdir(THISDIR+"/resources"))
LOGGER.debug(os.listdir(THISDIR))
LOGGER.debug(os.listdir(THISDIR+"/resources"))

with open(THISDIR / 'resources' / 'ets-report.json') as fh:
with (THISDIR / 'resources' / 'ets-report.json').open() as fh:
ETS_REPORT_SCHEMA = json.load(fh)

with open(THISDIR / 'resources' / 'kpi-report.json') as fh:
with (THISDIR / 'resources' / 'kpi-report.json').open() as fh:
KPI_REPORT_SCHEMA = json.load(fh)


Expand Down

0 comments on commit ef526da

Please sign in to comment.