소스 검색

feat: Added strict as a parameter (#793)

tags/v0.23.2
Dov Benyomin Sohacheski 1 년 전
committed by GitHub
부모
커밋
570f644310
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. +3
    -1
      diagrams/__init__.py

+ 3
- 1
diagrams/__init__.py 파일 보기

@@ -85,6 +85,7 @@ class Diagram:
outformat: str = "png",
autolabel: bool = False,
show: bool = True,
strict: bool = False,
graph_attr: dict = {},
node_attr: dict = {},
edge_attr: dict = {},
@@ -102,6 +103,7 @@ class Diagram:
:param graph_attr: Provide graph_attr dot config attributes.
:param node_attr: Provide node_attr dot config attributes.
:param edge_attr: Provide edge_attr dot config attributes.
:param strict: Rendering should merge multi-edges.
"""
self.name = name
if not name and not filename:
@@ -109,7 +111,7 @@ class Diagram:
elif not filename:
filename = "_".join(self.name.split()).lower()
self.filename = filename
self.dot = Digraph(self.name, filename=self.filename)
self.dot = Digraph(self.name, filename=self.filename, strict=strict)

# Set attributes.
for k, v in self._default_graph_attrs.items():


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