Skip to content

Commit

Permalink
[core/process] Remove spaces in a default argument
Browse files Browse the repository at this point in the history
  • Loading branch information
akinomyoga committed Mar 21, 2020
1 parent 0f2b96b commit 704ba1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ class FdState(object):
For example, you can do 'myfunc > out.txt' without forking.
"""
def __init__(self, errfmt, job_state, mem = None):
def __init__(self, errfmt, job_state, mem=None):
# type: (ErrorFormatter, JobState, Mem) -> None
"""
Args:
Expand Down

0 comments on commit 704ba1e

Please sign in to comment.