Skip to content

Commit e1139de

Browse files
author
Ubuntu
committed
Small cosmetic fixes
1 parent 44b7b9c commit e1139de

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

invokeai/nodes/bria_nodes/bria_controlnet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class BriaControlNetOutput(BaseInvocationOutput):
3636

3737
@invocation(
3838
"bria_controlnet",
39-
title="Bria ControlNet",
39+
title="ControlNet - Bria",
4040
tags=["controlnet", "bria"],
4141
category="controlnet",
4242
version="1.0.0",

invokeai/nodes/bria_nodes/bria_decoder.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,21 @@
1010

1111
@invocation(
1212
"bria_decoder",
13-
title="Bria Decoder",
13+
title="Decoder - Bria",
1414
tags=["image", "bria"],
1515
category="image",
1616
version="1.0.0",
1717
classification=Classification.Prototype,
1818
)
1919
class BriaDecoderInvocation(BaseInvocation):
20-
latents: LatentsField = InputField(
21-
description=FieldDescriptions.latents,
22-
input=Input.Connection,
23-
)
2420
vae: VAEField = InputField(
2521
description=FieldDescriptions.vae,
2622
input=Input.Connection,
2723
)
24+
latents: LatentsField = InputField(
25+
description=FieldDescriptions.latents,
26+
input=Input.Connection,
27+
)
2828

2929
@torch.no_grad()
3030
def invoke(self, context: InvocationContext) -> ImageOutput:

0 commit comments

Comments
 (0)