-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
`ruff` doesn't run isort as part of its format, so to maintain parity with the sort rules that black/isort offer, this is the ruff isort. --------- Co-authored-by: Radon Rosborough <[email protected]>
- Loading branch information
Showing
5 changed files
with
56 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
apt-get install -y python3-pip | ||
pip install ruff |
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,20 @@ | ||
from my_lib import Object | ||
|
||
import os | ||
|
||
from my_lib import Object3 | ||
|
||
from my_lib import Object2 | ||
|
||
import sys | ||
|
||
from third_party import lib15, lib1, lib2, lib3, lib4, lib5, lib6, lib7, lib8, lib9, lib10, lib11, lib12, lib13, lib14 | ||
|
||
import sys | ||
|
||
from __future__ import absolute_import | ||
|
||
from third_party import lib3 | ||
|
||
print("Hey") | ||
print("yo") |
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,26 @@ | ||
from __future__ import absolute_import | ||
|
||
import os | ||
import sys | ||
|
||
from my_lib import Object, Object2, Object3 | ||
from third_party import ( | ||
lib1, | ||
lib2, | ||
lib3, | ||
lib4, | ||
lib5, | ||
lib6, | ||
lib7, | ||
lib8, | ||
lib9, | ||
lib10, | ||
lib11, | ||
lib12, | ||
lib13, | ||
lib14, | ||
lib15, | ||
) | ||
|
||
print("Hey") | ||
print("yo") |