Skip to content

Commit a15bc0b

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

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

build/pkgs/configure/checksums.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
tarball=configure-VERSION.tar.gz
2-
sha1=03b46d88cb544ac683290487e94680de94d1ff50
3-
sha256=b687b542cfcce2a6865f7aa7164ea77ab00f082ef5cc8ef885e9dfb33c04679d
2+
sha1=859fa983cbdedc887c0f0c31db65d854fd916f64
3+
sha256=301244d7f15f24161d4ce94ae57e039d203b016de4e38f3fcce1beb702b9696f
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9a5d35a91d40c9ef83fa4976f266d706028f0596
1+
e7d73de54b2b1e91a9a79d31d3d9aa1656638ec0

src/sage/graphs/generic_graph.py

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

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

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

0 commit comments

Comments
 (0)