Skip to content

Commit e07b733

Browse files
committed
fixed ruff check
1 parent 1ca3fac commit e07b733

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/selfie-lib/selfie_lib/Literals.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,13 +134,13 @@ def _parseSinglePython(self, source_with_quotes: str) -> str:
134134
source = source_with_quotes[1:-1]
135135
to_unescape = self.inline_backslashes(source) # changed from inline_dollar
136136
return self._unescape_python(to_unescape)
137-
137+
138138
def encodeMultiPython(
139139
self, arg: str, escape_leading_whitespace: EscapeLeadingWhitespace
140140
) -> str:
141141
escape_backslashes = arg.replace("\\", "\\\\")
142142
escape_triple_quotes = escape_backslashes.replace(TRIPLE_QUOTE, '\\"\\"\\"')
143-
143+
144144
def protect_trailing_whitespace(line: str) -> str:
145145
if line.endswith(" "):
146146
return line[:-1] + "\\u0020"

0 commit comments

Comments
 (0)