Skip to content

Commit

Permalink
Use module imports rather than relative imports
Browse files Browse the repository at this point in the history
  • Loading branch information
sidneymau committed Aug 2, 2024
1 parent 85917e8 commit 8c67bd4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/qp/metrics/concrete_metric_classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
)
from qp.metrics.pit import PIT

from ..lazy_modules import pytdigest
from qp.lazy_modules import pytdigest
from functools import reduce
from operator import add

Expand Down
2 changes: 1 addition & 1 deletion src/qp/metrics/point_estimate_metric_classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
)
from functools import reduce
from operator import add
from ..lazy_modules import pytdigest
from qp.lazy_modules import pytdigest

class PointToPointMetricDigester(PointToPointMetric):

Expand Down

0 comments on commit 8c67bd4

Please sign in to comment.