Skip to content

Commit

Permalink
Merge pull request #124 from svalinn/kwargs-hotfix
Browse files Browse the repository at this point in the history
Change tuples of `kwargs` to lists
  • Loading branch information
gonuke authored Jun 28, 2024
2 parents be7010d + 47aa2fb commit ed476a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parastell/source_mesh.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def __init__(

self.scale = m2cm

for name in kwargs.keys() & ('scale'):
for name in kwargs.keys() & ('scale',):
self.__setattr__(name,kwargs[name])

self.strengths = []
Expand Down

0 comments on commit ed476a3

Please sign in to comment.