Skip to content

Commit

Permalink
nox -s format applied
Browse files Browse the repository at this point in the history
  • Loading branch information
kkalinowski-reef committed Dec 13, 2023
1 parent e87b49e commit b5f95f3
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
13 changes: 12 additions & 1 deletion b2/_b2v4/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
from ..console_tool import * # noqa (this includes ConsoleTool, main and all other things)
######################################################################
#
# File: b2/_b2v4/__init__.py
#
# Copyright 2023 Backblaze Inc. All Rights Reserved.
#
# License https://www.backblaze.com/using_b2_code.html
#
######################################################################

# ruff: noqa: F405
from ..console_tool import * # noqa

B2.register_subcommand(AuthorizeAccount)
B2.register_subcommand(CancelAllUnfinishedLargeFiles)
Expand Down
11 changes: 11 additions & 0 deletions b2/b2v3/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
######################################################################
#
# File: b2/b2v3/__init__.py
#
# Copyright 2023 Backblaze Inc. All Rights Reserved.
#
# License https://www.backblaze.com/using_b2_code.html
#
######################################################################

# ruff: noqa: F405
from b2._b2v4 import * # noqa

B2.register_subcommand(AuthorizeAccount)
Expand Down

0 comments on commit b5f95f3

Please sign in to comment.