Skip to content

Commit

Permalink
using importlib_metadata for 3.10_ only
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisBarker-NOAA committed Apr 12, 2024
1 parent afd0d4e commit f03b3b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compliance_checker/suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from netCDF4 import Dataset
from owslib.sos import SensorObservationService
from owslib.swe.sensor.sml import SensorML
if sys.version_info >= (3, 9):
if sys.version_info >= (3, 10):
import importlib.metadata as impmd
else:
import importlib_metadata as impmd

Check warning on line 29 in compliance_checker/suite.py

View check run for this annotation

Codecov / codecov/patch

compliance_checker/suite.py#L29

Added line #L29 was not covered by tests
Expand Down

0 comments on commit f03b3b6

Please sign in to comment.