Skip to content

Commit 2a5c0da

Browse files
committed
pylint: line to long fix
1 parent 172310f commit 2a5c0da

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Fruit_Jam/Fruit_Jam_Logic_Gates/workspace.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,9 @@ def create_entity_from_json(self, entity_json, add_to_workspace=True):
583583
location, self, entity_json["state"], add_to_workspace=add_to_workspace
584584
)
585585
# special case Connectors need the connector number
586-
elif entity_json["class"] == "SignalReceiver" or entity_json["class"] == "SignalTransmitter":
586+
elif entity_json["class"] == "SignalReceiver" or \
587+
entity_json["class"] == "SignalTransmitter":
588+
587589
if entity_json.get("connector_number") is not None:
588590
new_entity = ENTITY_CLASS_CONSTRUCTOR_MAP[entity_json["class"]](
589591
location, self, entity_json["connector_number"],

0 commit comments

Comments
 (0)