Skip to content

Commit

Permalink
sagemathgh-38847: Graph tikz method fixup
Browse files Browse the repository at this point in the history
    
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
  • Loading branch information
Release Manager committed Nov 2, 2024
2 parents f2780d8 + 515f3cb commit 47b74f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/graphs/generic_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,7 @@ def _latex_(self):

return self.latex_options().latex()

def tikz(self, format='dot2tex', edge_labels=None,
def tikz(self, format=None, edge_labels=None,
color_by_label=False, prog='dot', rankdir='down',
standalone_config=None, usepackage=None,
usetikzlibrary=None, macros=None,
Expand Down

0 comments on commit 47b74f7

Please sign in to comment.