Skip to content

Commit 89f0079

Browse files
committed
v3/primitives/queue.py Add trailing newline.
1 parent b7bd482 commit 89f0079

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

v3/primitives/queue.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,4 @@ def empty(self): # Return True if the queue is empty, False otherwise.
6969
def full(self): # Return True if there are maxsize items in the queue.
7070
# Note: if the Queue was initialized with maxsize=0 (the default) or
7171
# any negative number, then full() is never True.
72-
return self.maxsize > 0 and self.qsize() >= self.maxsize
72+
return self.maxsize > 0 and self.qsize() >= self.maxsize

0 commit comments

Comments
 (0)