Explorar el Código

refactor: Reflect changes in Cluster class (#653)

pull/650/merge
gabriel-tessier hace 2 años
committed by GitHub
padre
commit
eeb1dc7f2b
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 1 ficheros con 2 adiciones y 5 borrados
  1. +2
    -5
      diagrams/__init__.py

+ 2
- 5
diagrams/__init__.py Ver fichero

@@ -260,11 +260,8 @@ class Cluster:
self._diagram.subgraph(self.dot)
setcluster(self._parent)

def _validate_direction(self, direction: str):
direction = direction.upper()
if direction in self.__directions:
return True
return False
def _validate_direction(self, direction: str) -> bool:
return direction.upper() in self.__directions

def node(self, nodeid: str, label: str, **attrs) -> None:
"""Create a new node in the cluster."""


Cargando…
Cancelar
Guardar