Skip to content

Commit 906a421

Browse files
authored
Update Exercise-54-Priority_queue_simple.py
1 parent d0ba6de commit 906a421

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Exercise-54-Priority_queue_simple.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def __init__(self):
1010
def __str__(self):
1111
return ' '.join([str(i) for i in self.queue])
1212

13-
# for checking if the queue is empty
13+
## for checking if the queue is empty
1414
def isEmpty(self):
1515
return len(self.queue) == 0
1616

0 commit comments

Comments
 (0)