-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge #35: formatting code and fixed flaky8 errors
fc73e6e fmt: upgrade black to fix a bug inside the last version (Vincenzo Palazzo) 8f1e290 introduce black in the ci (Vincenzo Palazzo) d5e216a formatting code and fixed flaky8 errors (Vincenzo Palazzo) Pull request description: Signed-off-by: Vincenzo Palazzo <[email protected]> Top commit has no ACKs. Tree-SHA512: 55440f9b562b1cc8c4bdef13d85aa24b97c0b4df9abc9a73f1a7e1fec687ff0e6472c1516a957d8260fec7048a012a7239f3a48f7abd5133718dab10cd8c2cf2
- Loading branch information
Showing
38 changed files
with
6,649 additions
and
4,976 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[flake8] | ||
max-line-length = 88 | ||
extend-ignore = E203 |
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 |
---|---|---|
|
@@ -5,3 +5,4 @@ tags | |
**/github-merge.py | ||
.venv | ||
**.egg-info | ||
.idea |
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,7 +1,4 @@ | ||
from .backend import Backend | ||
from .bitcoind import Bitcoind | ||
|
||
__all__ = [ | ||
"Backend", | ||
"Bitcoind" | ||
] | ||
__all__ = ["Backend", "Bitcoind"] |
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 |
---|---|---|
|
@@ -16,6 +16,4 @@ | |
|
||
from .clightning import Runner | ||
|
||
__all__ = [ | ||
"Runner" | ||
] | ||
__all__ = ["Runner"] |
Oops, something went wrong.