Skip to content

Commit

Permalink
Fixes after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
JDBetteridge committed Jul 28, 2023
1 parent e436b48 commit 7d42cca
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion gusto/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ def perp(self, o, a):

_monkey_patch_ufl()

# Start logging first, incase anything goes wrong
from gusto.logging import * # noqa

from gusto.active_tracers import * # noqa
from gusto.common_forms import * # noqa
from gusto.configuration import * # noqa
Expand All @@ -27,7 +30,6 @@ def perp(self, o, a):
from gusto.labels import * # noqa
from gusto.limiters import * # noqa
from gusto.linear_solvers import * # noqa
from gusto.logging import * # noqa
from gusto.meshes import * # noqa
from gusto.numerical_integrator import * # noqa
from gusto.physics import * # noqa
Expand Down
1 change: 0 additions & 1 deletion gusto/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from abc import ABCMeta, abstractproperty
from enum import Enum
from firedrake import sqrt, Constant
from gusto.logging import logger


__all__ = [
Expand Down
1 change: 1 addition & 0 deletions gusto/timeloop.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from pyop2.profiling import timed_stage
from gusto.equations import PrognosticEquationSet
from gusto.fml import drop, Label, Term
from gusto.fields import TimeLevelFields, StateFields
from gusto.forcing import Forcing
from gusto.labels import (
transport, diffusion, time_derivative, linearisation, prognostic,
Expand Down

0 comments on commit 7d42cca

Please sign in to comment.