Skip to content

Commit 3b33bca

Browse files
committed
run black to fix code formatting
Signed-off-by: Elliot Murphy <statik@users.noreply.github.com>
1 parent 1a9a7b4 commit 3b33bca

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

fuzzbucket/g.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
flask_dance.consumer.OAuth2ConsumerBlueprint
88
] = werkzeug.local.LocalProxy(auth.get_oauth_blueprint)
99

10-
oauth_session: werkzeug.local.LocalProxy[
11-
flask_dance.consumer.OAuth2Session
12-
] = werkzeug.local.LocalProxy(lambda: auth.get_oauth_blueprint().session)
10+
oauth_session: werkzeug.local.LocalProxy[flask_dance.consumer.OAuth2Session] = (
11+
werkzeug.local.LocalProxy(lambda: auth.get_oauth_blueprint().session)
12+
)
1313

14-
user_storage: werkzeug.local.LocalProxy[
15-
flask_dance_storage.FlaskDanceStorage
16-
] = werkzeug.local.LocalProxy(flask_dance_storage.get_storage)
14+
user_storage: werkzeug.local.LocalProxy[flask_dance_storage.FlaskDanceStorage] = (
15+
werkzeug.local.LocalProxy(flask_dance_storage.get_storage)
16+
)

fuzzbucket_client/__main__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,7 @@ def utcnow() -> datetime.datetime:
141141

142142
class CustomHelpFormatter(
143143
argparse.ArgumentDefaultsHelpFormatter, argparse.RawDescriptionHelpFormatter
144-
):
145-
...
144+
): ...
146145

147146

148147
def main(sysargs: list[str] = sys.argv[:]) -> int:

0 commit comments

Comments
 (0)