mirror of
https://github.com/vale981/apheleia
synced 2025-03-05 09:31:40 -05:00

`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 <radon@intuitiveexplanations.com>
20 lines
333 B
Python
20 lines
333 B
Python
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")
|