Skip to content

Commit

Permalink
fix: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Lachlan Grose committed Nov 10, 2021
1 parent cbc8690 commit c67fc54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion LoopStructural/interpolators/discrete_interpolator.py
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ def _solve_cg(self, A, B, precon=None, **kwargs):
cgargs['M'] = precon(A)
return sla.cg(A, B, **cgargs)[0][:self.nx]

def _solve_pyamg(self, A, B, tol=1e-12,x0=None,verb=False**kwargs):
def _solve_pyamg(self, A, B, tol=1e-12,x0=None,verb=False,**kwargs):
"""
Solve least squares system using pyamg algorithmic multigrid solver
Expand Down
2 changes: 1 addition & 1 deletion LoopStructural/modelling/fault/fault_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def create_data_from_geometry(self,
minor_axis = None,
major_axis = None,
intermediate_axis = None,
w=1.
w=1.,
points=True):
"""Generate the required data for building a fault frame for a fault with the
specified parameters
Expand Down

0 comments on commit c67fc54

Please sign in to comment.