Skip to content

Commit 49acf9e

Browse files
Merge branch 'develop' into jtyler/isort-experiment
2 parents f2026a4 + b2f82aa commit 49acf9e

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

.editorconfig

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
root = true
22

33
[*.py]
4-
max_line_length = 120
4+
max_line_length = 100
55
indent_style = space
66
indent_size = 4
77
ignore_frosted_errors = E103
8-
skip = runtests.py,build
9-
balanced_wrapping = true
10-
not_skip = __init__.py

hug/__init__.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,10 @@
8989
)
9090
from hug.types import create as type
9191

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
9694
from hug import development_runner # isort:skip
95+
from hug import defaults # isort:skip
9796

9897
try: # pragma: no cover - defaulting to uvloop if it is installed
9998
import uvloop

0 commit comments

Comments
 (0)