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.
2 parents ebb3cd4 + 6fdb64d commit a34db24Copy full SHA for a34db24
json_logging/framework/quart/__init__.py
@@ -12,7 +12,7 @@
12
def is_quart_present():
13
# noinspection PyPep8,PyBroadException
14
try:
15
- import quart
+ from quart import Quart
16
return True
17
except:
18
return False
tests/smoketests/test_run_smoketest.py
@@ -26,7 +26,7 @@ def collect_backends():
26
yield preset_backend
27
else:
28
for folder in Path(__file__).parent.iterdir():
29
- if folder.is_dir():
+ if folder.is_dir() and folder.name != '__pycache__':
30
yield str(folder.name)
31
32
0 commit comments