Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
hsheth2 committed Dec 12, 2024
1 parent 54ef9e1 commit 2a722f0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def _split_qualified_name(qualified_name: str) -> List[str]:
# Second pass - remove outer pairs of quotes.
result = []
for part in parts:
if len(part) > 1 and part[0] == '"' and part[-1] == '"':
if len(part) > 2 and part[0] == '"' and part[-1] == '"':
part = part[1:-1]

result.append("".join(part))
Expand Down

0 comments on commit 2a722f0

Please sign in to comment.