Skip to content

Commit

Permalink
feat(latex): add missing returns
Browse files Browse the repository at this point in the history
  • Loading branch information
sammorley-short committed May 15, 2024
1 parent 4b5fa8a commit ea5c285
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bartiq/integrations/latex.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ def _format_linked_params(linked_params):


def _format_input_port_sizes(ports):
_format_port_sizes(ports, "Input")
return _format_port_sizes(ports, "Input")


def _format_output_port_sizes(ports):
_format_port_sizes(ports, "Output")
return _format_port_sizes(ports, "Output")


def _format_port_sizes(ports, label):
Expand Down

0 comments on commit ea5c285

Please sign in to comment.