-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: Fix and enforce formatting (#33)
This commit introduces both pycodestyle and isort tooling to the CI check pipeline. These tools ensure a consistent code style and import order across the codebase. The commit also includes a number of fixes to the codebase to ensure it passes the new checks. Most of these were automated through the use of the CLI tool `black`. The rest were fixed manually.
- Loading branch information
Showing
23 changed files
with
442 additions
and
318 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
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
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,3 +1,4 @@ | ||
from .connect_strategy import ConnectStrategy, ConnectionClient, ConnectionResult | ||
from .connect_strategy import (ConnectionClient, ConnectionResult, | ||
ConnectStrategy) | ||
from .error_strategy import ErrorStrategy | ||
from .retry_delay_strategy import RetryDelayStrategy |
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.