Skip to content

Commit b4a3150

Browse files
committed
reset: Fix unnecessary f-string
1 parent 4af3478 commit b4a3150

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/reset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
def reset(opts, term: str | None = os.environ.get("TERM")):
1212
if opts.q:
1313
if not term:
14-
print(f"unknown terminal type ", file=sys.stderr)
14+
print("unknown terminal type ", file=sys.stderr)
1515
try:
1616
while True:
1717
if term := input("Terminal type? "):

0 commit comments

Comments
 (0)