Skip to content

Commit 1375015

Browse files
authored
Merge pull request #1388 from consideRatio/pr/black-ahead-of-time-cleanup
Formatting adjustments to make the code transform nicer with black autoformatting
2 parents e04a8c3 + 92804b3 commit 1375015

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

binderhub/build.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -176,11 +176,13 @@ def __init__(
176176
def get_r2d_cmd_options(self):
177177
"""Get options/flags for repo2docker"""
178178
r2d_options = [
179-
'--ref', self.ref,
180-
'--image', self.image_name,
181-
'--no-clean', '--no-run', '--json-logs',
182-
'--user-name', 'jovyan',
183-
'--user-id', '1000',
179+
f"--ref={self.ref}",
180+
f"--image={self.image_name}",
181+
"--no-clean",
182+
"--no-run",
183+
"--json-logs",
184+
"--user-name=jovyan",
185+
"--user-id=1000",
184186
]
185187
if self.appendix:
186188
r2d_options.extend(['--appendix', self.appendix])

0 commit comments

Comments
 (0)