Skip to content

Commit

Permalink
RUFF
Browse files Browse the repository at this point in the history
  • Loading branch information
Rakhesis committed Jan 4, 2025
1 parent dedf50f commit e46662b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion invesalius/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ def parse_value(value):
except ValueError:
# Handle quoted strings
if (value.startswith('"') and value.endswith('"')) or (
value.startswith("'") and value.endswith("'")
value.startswith("'") and value.endswith("'")
):
return value[1:-1]
return value # Return as is if not recognized
Expand Down

0 comments on commit e46662b

Please sign in to comment.