Ver a proveniência

refactor: Reflect changes in Cluster class (#653)

pull/650/merge
gabriel-tessier há 2 anos
committed by GitHub
ascendente
cometimento
eeb1dc7f2b
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados ID da chave GPG: 4AEE18F83AFDEB23
1 ficheiros alterados com 2 adições e 5 eliminações
  1. +2
    -5
      diagrams/__init__.py

+ 2
- 5
diagrams/__init__.py Ver ficheiro

@@ -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."""


Carregando…
Cancelar
Guardar