소스 검색

refactor: Reflect changes in Cluster class (#653)

pull/650/merge
gabriel-tessier 2 년 전
committed by GitHub
부모
커밋
eeb1dc7f2b
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일2개의 추가작업 그리고 5개의 파일을 삭제
  1. +2
    -5
      diagrams/__init__.py

+ 2
- 5
diagrams/__init__.py 파일 보기

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


불러오는 중...
취소
저장