black format

This commit is contained in:
2026-01-07 16:05:47 +01:00
parent f7c125ae7b
commit 3d65bb6e4d
49 changed files with 2817 additions and 2280 deletions
+8 -5
View File
@@ -1,12 +1,15 @@
from bpy.types import PropertyGroup
class Adapter(PropertyGroup):
#def __init__(self):
# def __init__(self):
name = "Base Adapter"
#library = None
# library = None
def to_dict(self):
return {p: getattr(self, p) for p in self.bl_rna.properties.keys() if p !='rna_type'}
return {
p: getattr(self, p)
for p in self.bl_rna.properties.keys()
if p != "rna_type"
}