Skip to content

Commit a9af109

Browse files
committed
Fix column name regex validation
1 parent d90dd4d commit a9af109

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

panel/simdec_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
# save_layout=True,
4242
)
4343

44-
VALID_CHARACTERS = re.compile(r"[A-Za-z0-9_ \-.]")
44+
VALID_CHARACTERS = re.compile(r"[^A-Za-z0-9_ \-.]")
4545
GENERIC_ERROR_MSG = (
4646
"Could not parse the CSV file. "
4747
"Please check that it uses commas ',' as the delimiter "

0 commit comments

Comments
 (0)