Skip to content

Commit

Permalink
fix pycodestyle error in hosts.py (NOAA-EMC#2695)
Browse files Browse the repository at this point in the history
  • Loading branch information
RussTreadon-NOAA committed Jun 20, 2024
1 parent c14607f commit 9973c70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/hosts.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def detect(cls):
if os.path.exists('/scratch1/NCEPDEV'):
machine = 'HERA'
elif os.path.exists('/work/noaa'):
machine = socket.gethostname().split("-",1)[0].upper()
machine = socket.gethostname().split("-", 1)[0].upper()
elif os.path.exists('/lfs4/HFIP'):
machine = 'JET'
elif os.path.exists('/lfs/f1'):
Expand Down

0 comments on commit 9973c70

Please sign in to comment.