mirror of
https://github.com/vale981/apheleia
synced 2025-03-05 17:41:41 -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>
26 lines
316 B
Python
26 lines
316 B
Python
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")
|