Skip to content

Commit

Permalink
Make flake8 happy
Browse files Browse the repository at this point in the history
  • Loading branch information
lbonn committed Feb 5, 2024
1 parent 0002b73 commit 280a354
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions i3_quickterm/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
from typing import Any, Literal, Optional, TextIO

from contextlib import contextmanager, suppress
from functools import wraps
from pathlib import Path

import i3ipc
Expand Down Expand Up @@ -257,7 +256,8 @@ def execvp(self, cmd):
def launch_inplace(self):
"""Quickterm is called by itself
Mark current window, move back and focus again, then run shell in current process
Mark current window, move back and focus again, then run shell in current
process
"""

self.conn.command(f"mark {self.select_mark}")
Expand Down Expand Up @@ -397,6 +397,6 @@ def main():
if __name__ == "__main__":
try:
sys.exit(main())
except Exception as e:
except Exception:
print(traceback.format_exc())
sys.exit(1)

0 comments on commit 280a354

Please sign in to comment.