Skip to content

Commit

Permalink
abs - fixing import linter warning
Browse files Browse the repository at this point in the history
  • Loading branch information
bsaakash committed Aug 26, 2024
1 parent 15d24ff commit 677cbbc
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions modules/performUQ/UCSD_UQ/preprocess_hierarchical_bayesian.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@

import numpy as np

path_to_common_uq = Path(__file__).parent.parent / 'common'
sys.path.append(str(path_to_common_uq))
import uq_utilities # noqa: E402
sys.path.append(str(Path(__file__).parent.parent / 'common'))
import uq_utilities

InputsType = tuple[
Path,
Expand Down

0 comments on commit 677cbbc

Please sign in to comment.