diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2021-12-23 12:29:55 +0100 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2021-12-23 12:29:55 +0100 |
commit | a7102f127d64a13d555d2085db84ae349532b499 (patch) | |
tree | ce1b9401b1712c37659e86dd647b4ab0d3c1f8c1 | |
parent | e909231d76cd5a4ad1b6f28f577e59d00483a431 (diff) |
Remove unused variable
-rw-r--r-- | lesana/command.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lesana/command.py b/lesana/command.py index 6914ca3..92f82df 100644 --- a/lesana/command.py +++ b/lesana/command.py @@ -6,7 +6,7 @@ import sys try: import argcomplete -except ImportError as e: +except ImportError: argcomplete = False from . import Collection, Entry, TemplatingError |