Skip to content

Commit

Permalink
xyz filter blank for number axes
Browse files Browse the repository at this point in the history
  • Loading branch information
w-e-w authored and ruchej committed Sep 30, 2024
1 parent 4ccf8af commit 5755087
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scripts/xyz_grid.py
Original file line number Diff line number Diff line change
Expand Up @@ -555,6 +555,8 @@ def process_axis(opt, vals, vals_dropdown):
valslist_ext = []

for val in valslist:
if val.strip() == '':
continue
m = re_range.fullmatch(val)
mc = re_range_count.fullmatch(val)
if m is not None:
Expand All @@ -577,6 +579,8 @@ def process_axis(opt, vals, vals_dropdown):
valslist_ext = []

for val in valslist:
if val.strip() == '':
continue
m = re_range_float.fullmatch(val)
mc = re_range_count_float.fullmatch(val)
if m is not None:
Expand Down

0 comments on commit 5755087

Please sign in to comment.