Skip to content

Commit

Permalink
review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
akihikokuroda committed Sep 30, 2024
1 parent cfe0cba commit cbb38cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gateway/api/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ def sanitize_name(name: str):
if name:
sanitized_name = ""
for c in name:
if c.isalnum() or c in ["_", "-", ":", "@", "/"]:
if c.isalnum() or c in ["_", "-", "/"]:
sanitized_name += c
return sanitized_name
return name

0 comments on commit cbb38cc

Please sign in to comment.