瀏覽代碼

refactor: Reflect changes in Cluster class (#653)

pull/650/merge
gabriel-tessier 2 年之前
committed by GitHub
父節點
當前提交
eeb1dc7f2b
沒有發現已知的金鑰在資料庫的簽署中 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."""


Loading…
取消
儲存