Skip to content

Commit

Permalink
Support for step zero
Browse files Browse the repository at this point in the history
  • Loading branch information
b8raoult committed Feb 11, 2024
1 parent 0127d75 commit 2178524
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion ai_models_fourcastnetv2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# granted to it by virtue of its status as an intergovernmental organisation
# nor does it submit to any jurisdiction.

__version__ = "0.0.1"
__version__ = "0.0.2"
4 changes: 2 additions & 2 deletions ai_models_fourcastnetv2/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
# nor does it submit to any jurisdiction.


import datetime
import logging
import os

import ai_models_fourcastnetv2.fourcastnetv2 as nvs
import numpy as np
import torch
from ai_models.model import Model

import ai_models_fourcastnetv2.fourcastnetv2 as nvs

LOG = logging.getLogger(__name__)


Expand Down
9 changes: 5 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
[isort]
profile = black
skip_glob = ai_models_fourcastnetv2/fourcastnetv2/*.py

[flake8]
; ignore = E226,E302,E41
max-line-length = 120
; exclude = tests/*
; See https://black.readthedocs.io/en/stable/the_black_code_style.html
exclude =
dev/*
experiments
?.py
exclude = fourcastnetv2
extend-ignore = E203

[black]
exclude = fourcastnetv2

0 comments on commit 2178524

Please sign in to comment.