Skip to content

Commit 47b74f7

Browse files
author
Release Manager
committed
gh-38847: Graph tikz method fixup tikz method for graphs was recently added in #38798 default value for `format` should be `None` as documented. ### ⌛ Dependencies #38798 URL: #38847 Reported by: Sébastien Labbé Reviewer(s): David Coudert, Frédéric Chapoton
2 parents f2780d8 + 515f3cb commit 47b74f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sage/graphs/generic_graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -939,7 +939,7 @@ def _latex_(self):
939939

940940
return self.latex_options().latex()
941941

942-
def tikz(self, format='dot2tex', edge_labels=None,
942+
def tikz(self, format=None, edge_labels=None,
943943
color_by_label=False, prog='dot', rankdir='down',
944944
standalone_config=None, usepackage=None,
945945
usetikzlibrary=None, macros=None,

0 commit comments

Comments
 (0)