-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
These changes format code by using: ``` $ black -l79 $ zimports ``` and some manual changes to format the code as PEP8 compliance Closes: #146 Pull-request: #146 Pull-request-sha: 6920c1c Change-Id: I6532b61d3163695e89c97e744b6a2061cd83a97e
- Loading branch information
Showing
39 changed files
with
1,250 additions
and
1,046 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = '0.7.2' | ||
__version__ = "0.7.2" | ||
|
||
from .lock import Lock # noqa | ||
from .lock import NeedRegenerationException # noqa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
from .region import CacheRegion, register_backend, make_region # noqa | ||
from .region import CacheRegion # noqa | ||
from .region import make_region # noqa | ||
from .region import register_backend # noqa | ||
from .. import __version__ # noqa | ||
|
||
# backwards compat | ||
from .. import __version__ # noqa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.