We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f17f7f commit 2cf830bCopy full SHA for 2cf830b
fise/errors.py
@@ -18,15 +18,11 @@ class QueryHandleError(Exception):
18
19
def __init__(self, description: str = "") -> None:
20
21
- # Only prints the error description if specified
22
- # explicitly else prints any empty string.
+ # Only prints the error description if specified explicitly.
23
if description:
24
description = "\nDescription: " + description
25
26
- print(
27
- f"\033[31m{self._error}{description}\033[0m",
28
- file=sys.stderr,
29
- )
+ print(f"\033[31m{self._error}{description}\033[0m", file=sys.stderr)
30
super().__init__()
31
32
0 commit comments