We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a2ac6e commit e5d445eCopy full SHA for e5d445e
2 files changed
meeseeksdev/meeseeksbox/commands.py
@@ -936,8 +936,9 @@ def keen_stats():
936
)
937
if hasattr(e, "stderr"):
938
print(
939
- "\n" + e.stderr.decode("utf8", "replace"), file=sys.stderr
940
- ) # type:ignore[attr-defined]
+ "\n" + e.stderr.decode("utf8", "replace"), # type:ignore[attr-defined]
+ file=sys.stderr,
941
+ )
942
print("\n" + repo.git.status(), file=sys.stderr)
943
add_event("error", {"git_crash": 1})
944
s_reason = "Unknown error line 501"
meeseeksdev/meeseeksbox/core.py
@@ -6,7 +6,6 @@
6
import time
7
from asyncio import Future
8
from concurrent.futures import ThreadPoolExecutor as Pool
9
-from typing import Optional
10
11
import tornado.httpserver
12
import tornado.ioloop
0 commit comments