Skip to content

Commit b69cae3

Browse files
authored
Merge pull request #228 from htr3n/master
Fix incorrect f'string quotes
2 parents dfdc4dd + 203cd70 commit b69cae3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nautilus_open_any_terminal/nautilus_open_any_terminal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ def open_local_terminal_in_uri(uri: str):
257257
if terminal == "warp":
258258
# Force new_tab to be considered even without traditional tab arguments
259259
Popen( # pylint: disable=consider-using-with
260-
["xdg-open", f"warp://action/new_{"tab" if new_tab else "window"}?path={result.path}"]
260+
["xdg-open", f"warp://action/new_{'tab' if new_tab else 'window'}?path={result.path}"]
261261
)
262262
return
263263

0 commit comments

Comments
 (0)