Skip to content

Commit

Permalink
catching use of pyedt
Browse files Browse the repository at this point in the history
  • Loading branch information
jgostick committed Aug 7, 2024
1 parent 813625a commit aa7b9c0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/integration/test_drainage.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import numpy as np
import porespy as ps
import matplotlib.pyplot as plt
from pyedt import edt
try:
from pyedt import edt
except ModuleNotFoundError:
from edt import edt


def test_drainage():
Expand Down

0 comments on commit aa7b9c0

Please sign in to comment.