Skip to content

Commit

Permalink
Oops. That was a bad fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Araneidae committed Sep 17, 2020
1 parent dcd4b2b commit 7dc25c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cothread/cothread.py
Original file line number Diff line number Diff line change
Expand Up @@ -833,8 +833,8 @@ class EventQueue(EventBase):
'__max_length', # Maximum length of queue
]

def __init__(self):
EventBase.__init__(self, max_length = None)
def __init__(self, max_length = None):
EventBase.__init__(self)
self.__queue = []
self.__closed = False
self.__max_length = max_length
Expand Down

0 comments on commit 7dc25c9

Please sign in to comment.