Skip to content

Commit 26fe4c6

Browse files
Remove extra Semicolon (TheAlgorithms#7152)
1 parent 05e1912 commit 26fe4c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_structures/queue/linked_queue.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class LinkedQueue:
2222
>>> queue.put(5)
2323
>>> queue.put(9)
2424
>>> queue.put('python')
25-
>>> queue.is_empty();
25+
>>> queue.is_empty()
2626
False
2727
>>> queue.get()
2828
5

0 commit comments

Comments
 (0)