Skip to content

Commit 1fae623

Browse files
Apply suggestions from code review
Co-authored-by: Vincent Macri <vincent.macri@ucalgary.ca>
1 parent e94d3fb commit 1fae623

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sage/combinat/cluster_algebra_quiver/cluster_seed.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4895,7 +4895,7 @@ def is_LeeLiZel_allowable(T, n, m, b, c) -> bool:
48954895
return True
48964896

48974897

4898-
def get_green_vertices(C) -> list:
4898+
def get_green_vertices(C) -> list[int]:
48994899
r"""
49004900
Get the green vertices from a matrix.
49014901
@@ -4916,7 +4916,7 @@ def get_green_vertices(C) -> list:
49164916
return [i for i, v in enumerate(C.columns()) if any(x > 0 for x in v)]
49174917

49184918

4919-
def get_red_vertices(C) -> list:
4919+
def get_red_vertices(C) -> list[int]:
49204920
r"""
49214921
Get the red vertices from a matrix.
49224922

0 commit comments

Comments
 (0)