mirror of https://github.com/docker/docker-py.git
PEP8 compliance - space between numbers and operators
This commit is contained in:
parent
75c7931f3d
commit
80b3688e81
|
@ -117,8 +117,8 @@ class Client(requests.Session):
|
|||
else:
|
||||
units = {'b': 1,
|
||||
'k': 1024,
|
||||
'm': 1024*1024,
|
||||
'g': 1024*1024*1024}
|
||||
'm': 1024 * 1024,
|
||||
'g': 1024 * 1024 * 1024}
|
||||
suffix = mem_limit[-1].lower()
|
||||
|
||||
# Check if the variable is a string representation of an int
|
||||
|
|
Loading…
Reference in New Issue