Skip to content

Commit 80b3688

Browse files
committed
PEP8 compliance - space between numbers and operators
1 parent 75c7931 commit 80b3688

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ def _container_config(self, image, command, hostname=None, user=None,
117117
else:
118118
units = {'b': 1,
119119
'k': 1024,
120-
'm': 1024*1024,
121-
'g': 1024*1024*1024}
120+
'm': 1024 * 1024,
121+
'g': 1024 * 1024 * 1024}
122122
suffix = mem_limit[-1].lower()
123123

124124
# Check if the variable is a string representation of an int

0 commit comments

Comments
 (0)