chore(frontend-python): remove deprecated operation color mapping constant

This commit is contained in:
Umut
2023-04-19 12:03:02 +02:00
committed by Quentin Bourgerie
parent 7ce6f962e0
commit 455771e3ee

View File

@@ -17,13 +17,3 @@ class Operation(Enum):
Input = "input"
# pylint: enable=invalid-name
# https://graphviz.org/doc/info/colors.html#svg
OPERATION_COLOR_MAPPING = {
Operation.Constant: "grey",
Operation.Generic: "black",
Operation.Input: "crimson",
"output": "gold",
}