Skip to content

Commit a748a69

Browse files
committed
Remove redundant string compact implementation
1 parent ec9e478 commit a748a69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

novelwriter/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ def uniqueCompact(text: str) -> str:
301301
def processDialogSymbols(symbols: str) -> str:
302302
"""Process dialogue line symbols."""
303303
result = ""
304-
for c in uniqueCompact("".join(symbols.split())):
304+
for c in uniqueCompact(symbols):
305305
if c in nwQuotes.ALLOWED:
306306
result += c
307307
return result

0 commit comments

Comments
 (0)