Skip to content

Commit

Permalink
Don't use Python3.7 features
Browse files Browse the repository at this point in the history
  • Loading branch information
yuvipanda committed Jan 4, 2019
1 parent 058e55e commit 8b0ddc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion simpervisor/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def __init__(self, name, *args, always_restart=False, ready_func=None, ready_tim
self._proc_kwargs = kwargs
self.ready_func = ready_func
self.ready_timeout = ready_timeout
self.proc: asyncio.Process = None
self.proc = None
if log is None:
self.log = logging.getLogger('simpervisor')
else:
Expand Down

0 comments on commit 8b0ddc5

Please sign in to comment.