Skip to content

Commit

Permalink
Run black
Browse files Browse the repository at this point in the history
  • Loading branch information
JesperDramsch committed Sep 8, 2023
1 parent 0e6241c commit 02fb2e9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ai_models_graphcast/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,11 @@
graphcast,
normalization,
)
except ModuleNotFoundError as e:
except ModuleNotFoundError as e:
msg = "You need to install Graphcast from git to use this model. See README.md for details."
LOG.error(msg)
raise ModuleNotFoundError (e + msg)
raise ModuleNotFoundError(e + msg)


class GraphcastModel(Model):
download_url = "https://storage.googleapis.com/dm_graphcast/{file}"
Expand Down

0 comments on commit 02fb2e9

Please sign in to comment.