Skip to content

Commit d303d7f

Browse files
committed
final formatting fixes for black
1 parent 97df391 commit d303d7f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

conda/web-installer/build.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def usage():
1515

1616
def write_file(destpath, contents):
1717
with open(destpath, "w") as destfile:
18-
destfile.write(contents)
18+
destfile.write(contents)
1919

2020

2121
def run_cmd(cmdarray, workingdir, captureout=False):
@@ -38,7 +38,7 @@ def generate_templates(installer_version, tag_version):
3838
template = env.get_template("construct.yaml.jinja2")
3939
output = template.render(installer_version=installer_version)
4040
write_file("construct.yaml", output)
41-
41+
4242
template = env.get_template("post-install.bat.jinja2")
4343
output = template.render(tag_version=tag_version)
4444
write_file("post-install.bat", output)
@@ -51,10 +51,10 @@ def generate_templates(installer_version, tag_version):
5151
def run_constructor():
5252
print("Running constructor")
5353
scriptdir = os.path.dirname(os.path.realpath(__file__))
54-
builddir = os.path.join(scriptdir, 'build')
54+
builddir = os.path.join(scriptdir, "build")
5555
if not os.path.exists(builddir):
5656
os.makedirs(builddir)
57-
run_cmd(['constructor', scriptdir], builddir)
57+
run_cmd(["constructor", scriptdir], builddir)
5858

5959

6060
def main():

0 commit comments

Comments
 (0)