Skip to content

Commit

Permalink
Merge pull request #112 from geoscixyz/tdem_loop_edit
Browse files Browse the repository at this point in the history
fix Update parameter in TDEM loop app
  • Loading branch information
sgkang authored Jul 24, 2018
2 parents 5365ea9 + 27ccd09 commit 1d3eeb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions em_examples/TDEMHorizontalLoopCylWidget.py
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ def foo(
self.srcLoc = np.array([0., 0., z])
self.rxLoc = np.array([[rxOffset, 0., z]])
self.radius = radius
if Update:
if Update == "True":
dpred = self.simulate(
self.srcLoc, self.rxLoc, self.time, self.radius
)
Expand Down Expand Up @@ -598,7 +598,7 @@ def foo(
self.srcLoc = np.array([0., 0., z])
self.rxLoc = np.array([[rxOffset, 0., z]])
self.radius = radius
if Update:
if Update == "True":
dpred = self.simulate(
self.srcLoc, self.rxLoc, self.time, self.radius
)
Expand Down

0 comments on commit 1d3eeb9

Please sign in to comment.