Skip to content

Commit

Permalink
fix: boolean operator in surfe wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
Lachlan Grose committed Oct 5, 2021
1 parent 51f15c0 commit f11816e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LoopStructural/interpolators/surfe_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def __init__(self, method='single_surface'):
if method == 'single_surface':
logger.info("Using single surface interpolator")
self.surfe = surfepy.Surfe_API(1)
if method == 'Lajaunie' or method='increments':
if method == 'Lajaunie' or method=='increments':
logger.info("Using Lajaunie method")
self.surfe = surfepy.Surfe_API(2)
if method == 'horizons':
Expand Down

0 comments on commit f11816e

Please sign in to comment.