Skip to content

Commit 03aa5b1

Browse files
committed
style: resolve linting issues
1 parent b174b22 commit 03aa5b1

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ docs: update
2727

2828
#: format all source files
2929
format:
30-
poetry run shed --refactor --py310-plus src/**/*.py tests/**/*.py
30+
poetry run shed --refactor --py310-plus src/**/*.py tests/*.py
3131

3232
#: list avalible make targets
3333
help:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "quart-injector"
3-
version = "0.0.0-b1"
3+
version = "0.0.1-b1"
44
description = ""
55
authors = ["Daniel Knell <contact@danielknell.co.uk>"]
66
readme = "README.md"

src/quart_injector/module.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"""
44
import logging
55

6+
import injector
67
import quart
78
import quart.sessions
8-
import injector
99

1010

1111
class QuartModule(injector.Module):

src/quart_injector/wiring.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44

55

66
import collections.abc
7+
import functools
78
import inspect
89
import typing
9-
import functools
1010

11+
import injector
1112
import quart
1213
import quart.views
13-
import injector
1414

15-
import quart_injector.scope
1615
import quart_injector.module
16+
import quart_injector.scope
1717

1818

1919
def _wrap_view_class(

0 commit comments

Comments
 (0)