Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
nichollsh committed Nov 12, 2024
1 parent d607d35 commit b87fa0c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/proteus/interior/aragog.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import numpy as np
import pandas as pd
import platformdirs

from aragog import Output, Solver
from aragog.parser import (
Parameters,
Expand All @@ -24,7 +25,6 @@
_ScalingsParameters,
_SolverParameters,
)

from proteus.interior.timestep import next_step
from proteus.utils.constants import R_earth, secs_per_year

Expand Down
1 change: 1 addition & 0 deletions src/proteus/orbit/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
from __future__ import annotations

import logging

import numpy as np

from proteus.utils.constants import AU, const_G
Expand Down
8 changes: 4 additions & 4 deletions src/proteus/proteus.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@
import os
from datetime import datetime
from pathlib import Path

import numpy as np
from calliope.structure import calculate_mantle_mass

from proteus.config import read_config_object
from proteus.atmos_clim import RunAtmosphere
from proteus.config import read_config_object
from proteus.escape.wrapper import RunEscape
from proteus.interior import run_interior
from proteus.orbit.wrapper import update_period, update_separation
from proteus.outgas.wrapper import calc_target_elemental_inventories, run_outgassing
from proteus.orbit.wrapper import update_separation, update_period
from proteus.star.wrapper import (
get_new_spectrum,
init_star,
Expand All @@ -20,7 +22,6 @@
write_spectrum,
)
from proteus.utils.constants import (
AU,
M_earth,
R_earth,
const_G,
Expand Down Expand Up @@ -55,7 +56,6 @@
GetLogfilePath,
setup_logger,
)
from calliope.structure import calculate_mantle_mass


class Proteus:
Expand Down
2 changes: 1 addition & 1 deletion src/proteus/star/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import numpy as np

from proteus.utils.constants import AU, R_sun, const_sigma, M_sun
from proteus.utils.constants import AU, M_sun, R_sun, const_sigma

log = logging.getLogger("fwl."+__name__)

Expand Down

0 comments on commit b87fa0c

Please sign in to comment.