diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2024-07-22 17:39:41 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-22 17:39:41 +0200 |
| commit | 1b09fdbddbe4aeea79dcefc93ecd91047696ff06 (patch) | |
| tree | 0d90fe8e9f729e52c9123077b8701281062ccf58 /lib/elements/stroke.py | |
| parent | fb3568342b9e1d09062ee7a83989a59d5e5d4078 (diff) | |
multiple int param is expected to return int not str (#3102)
Diffstat (limited to 'lib/elements/stroke.py')
| -rw-r--r-- | lib/elements/stroke.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/elements/stroke.py b/lib/elements/stroke.py index 925a7dcd..4615e935 100644 --- a/lib/elements/stroke.py +++ b/lib/elements/stroke.py @@ -101,7 +101,7 @@ class Stroke(EmbroideryElement): default=0, sort_index=3) def bean_stitch_repeats(self): - return self.get_multiple_int_param("bean_stitch_repeats", "0") + return self.get_multiple_int_param("bean_stitch_repeats", 0) @property @param('running_stitch_length_mm', |
