Skip to content
This repository was archived by the owner on Aug 7, 2024. It is now read-only.

Commit a79edc6

Browse files
author
John Andersen
committed
style: Format with black==23.3.0
Signed-off-by: John Andersen <[email protected]>
1 parent 3a96ac0 commit a79edc6

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

project_example_for_python/aclass.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ def load(cls1):
99
class MyClass:
1010
@classmethod
1111
def classception(cls2):
12-
return type("NewClass", (cls1, cls2,), {"FEED": "FACE"})
12+
return type(
13+
"NewClass",
14+
(
15+
cls1,
16+
cls2,
17+
),
18+
{"FEED": "FACE"},
19+
)
1320

1421
return MyClass

0 commit comments

Comments
 (0)