File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 1
1
root = true
2
2
3
3
[* .py ]
4
- max_line_length = 120
4
+ max_line_length = 100
5
5
indent_style = space
6
6
indent_size = 4
7
7
ignore_frosted_errors = E103
8
- skip = runtests.py,build
9
- balanced_wrapping = true
10
- not_skip = __init__.py
Original file line number Diff line number Diff line change 89
89
)
90
90
from hug .types import create as type
91
91
92
- from hug import (
93
- authentication ,
94
- ) # isort:skip - must be imported last for defaults to have access to all modules
95
-
92
+ # The following imports must be imported last; in particular, defaults to have access to all modules
93
+ from hug import authentication #isort:skip
96
94
from hug import development_runner # isort:skip
95
+ from hug import defaults # isort:skip
97
96
98
97
try : # pragma: no cover - defaulting to uvloop if it is installed
99
98
import uvloop
You can’t perform that action at this time.
0 commit comments