Skip to content

Commit ce13a60

Browse files
committed
uprev and correct commend
1 parent 128765d commit ce13a60

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

arq/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def __init__(self, *,
8383
:param settings: connection settings to use for the pool
8484
:param existing_pool: existing pool, if set no new pool is craeted, instead this one is used
8585
"""
86-
# the "or getattr(...) or" seems odd but it allows the mixin to work with subclasses with initialise
86+
# the "or getattr(...) or" seems odd but it allows the mixin to work with subclasses which initialise
8787
# loop or settings before calling super().__init__ and don't pass those parameters.
8888
self.loop = loop or getattr(self, 'loop', None) or asyncio.get_event_loop()
8989
self.settings = settings or getattr(self, 'settings', None) or ConnectionSettings()

arq/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
__all__ = ['VERSION']
44

5-
VERSION = StrictVersion('0.1.0')
5+
VERSION = StrictVersion('0.2.0')

0 commit comments

Comments
 (0)