Skip to content

Commit e3e727f

Browse files
authored
Merge pull request #107 from keiyamamo/fix_argpar
make sure dx_s_id is kept as int
2 parents 7f83082 + 237c726 commit e3e727f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

turtleFSI/utils/argpar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ def parse():
275275

276276
if args.__dict__["solid_properties"]:
277277
for k, v in args.__dict__["solid_properties"].items():
278-
if k != "material_model":
278+
if k != "material_model" and k != "dx_s_id":
279279
args.__dict__["solid_properties"][k] = float(v)
280280

281281
if args.__dict__["fluid_properties"]:

0 commit comments

Comments
 (0)