Skip to content

Commit

Permalink
Remove single quotes as string delimiters
Browse files Browse the repository at this point in the history
  • Loading branch information
kg583 committed Jun 25, 2024
1 parent 32897f4 commit 938254c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tivars/types/tokenized.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ def name(self, value) -> str:

@Loader[str]
def load_string(self, string: str, *, model: TIModel = None):
super().load_string(string.strip("\"'"))
super().load_string(string.strip("\""))

def string(self) -> str:
return f"\"{super().string()}\""
Expand Down

0 comments on commit 938254c

Please sign in to comment.