Skip to content

Commit

Permalink
add indents
Browse files Browse the repository at this point in the history
  • Loading branch information
pdimens committed Jun 6, 2024
1 parent d8b9999 commit e642265
Showing 1 changed file with 17 additions and 20 deletions.
37 changes: 17 additions & 20 deletions src/harpy/hpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ def generic():
yml.write("#default-storage-provider: fs\n")
yml.write("#local-storage-prefix: /home2/$USER\n")
yml.write("#shared-fs-usage:\n")
yml.write("#- persistence\n")
yml.write("#- software-deployment\n")
yml.write("#- sources\n")
yml.write("#- source-cache\n")
yml.write("#\t- persistence\n")
yml.write("#\t- software-deployment\n")
yml.write("#\t- sources\n")
yml.write("#\t- source-cache\n")

@click.command()
def lsf():
Expand Down Expand Up @@ -97,10 +97,10 @@ def lsf():
yml.write("#default-storage-provider: fs\n")
yml.write("#local-storage-prefix: /home2/$USER\n")
yml.write("#shared-fs-usage:\n")
yml.write("#- persistence\n")
yml.write("#- software-deployment\n")
yml.write("#- sources\n")
yml.write("#- source-cache\n")
yml.write("#\t- persistence\n")
yml.write("#\t- software-deployment\n")
yml.write("#\t- sources\n")
yml.write("#\t- source-cache\n")

@click.command()
def htcondor():
Expand Down Expand Up @@ -131,10 +131,10 @@ def htcondor():
yml.write("#default-storage-provider: fs\n")
yml.write("#local-storage-prefix: /home2/$USER\n")
yml.write("#shared-fs-usage:\n")
yml.write("#- persistence\n")
yml.write("#- software-deployment\n")
yml.write("#- sources\n")
yml.write("#- source-cache\n")
yml.write("#\t- persistence\n")
yml.write("#\t- software-deployment\n")
yml.write("#\t- sources\n")
yml.write("#\t- source-cache\n")

@click.command()
def slurm():
Expand Down Expand Up @@ -164,10 +164,10 @@ def slurm():
yml.write("#default-storage-provider: fs\n")
yml.write("#local-storage-prefix: /home2/$USER\n")
yml.write("#shared-fs-usage:\n")
yml.write("#- persistence\n")
yml.write("#- software-deployment\n")
yml.write("#- sources\n")
yml.write("#- source-cache\n")
yml.write("#\t- persistence\n")
yml.write("#\t- software-deployment\n")
yml.write("#\t- sources\n")
yml.write("#\t- source-cache\n")

@click.command()
def googlebatch():
Expand Down Expand Up @@ -240,7 +240,4 @@ def googlebatch():
hpc.add_command(htcondor)
hpc.add_command(lsf)
hpc.add_command(generic)
hpc.add_command(googlebatch)



hpc.add_command(googlebatch)

0 comments on commit e642265

Please sign in to comment.