Commit 02328bb
committed
chore(session) Fix UP031 format specifier issue
src/libtmux/session.py:707:26: UP031 Use format specifiers instead of percent format
|
705 | if target_window:
706 | if isinstance(target_window, int):
707 | target = "%s:%d" % (self.window_name, target_window)
| ^^^^^^^ UP031
708 | else:
709 | target = f"{target_window}"
|
= help: Replace with format specifiers1 parent a5eba0a commit 02328bb
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
704 | 704 | | |
705 | 705 | | |
706 | 706 | | |
707 | | - | |
| 707 | + | |
708 | 708 | | |
709 | 709 | | |
710 | 710 | | |
| |||
0 commit comments