Skip to content

Commit

Permalink
Missing type
Browse files Browse the repository at this point in the history
  • Loading branch information
grtlr committed Dec 12, 2024
1 parent 664d9e5 commit fa5809c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/python/graphs/graphs.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
random.seed(42)


def log_lattice(num_nodes) -> None:
def log_lattice(num_nodes: int) -> None:
coordinates = itertools.product(range(num_nodes), range(num_nodes))

nodes, colors = zip(*[
Expand Down

0 comments on commit fa5809c

Please sign in to comment.