Skip to content

Commit

Permalink
Remove unused imports and add missing imports
Browse files Browse the repository at this point in the history
  • Loading branch information
wiederm committed Jan 9, 2024
1 parent 8e9a88f commit 50d38df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions chiron/integrators.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,8 @@

import jax.numpy as jnp
from jax import random
from tqdm import tqdm
from openmm import unit
from .states import SamplerState, ThermodynamicState
from typing import Dict
from loguru import logger as log
from .reporters import SimulationReporter
from typing import Optional

Expand Down Expand Up @@ -45,6 +42,7 @@ def __init__(
reporter : SimulationReporter, optional
Reporter object for saving the simulation data. Default is None.
"""
from loguru import logger as log

self.kB = unit.BOLTZMANN_CONSTANT_kB * unit.AVOGADRO_CONSTANT_NA
log.info(f"stepsize = {stepsize}")
Expand Down Expand Up @@ -101,6 +99,8 @@ def run(
"""
from .utils import get_list_of_mass
from tqdm import tqdm
from loguru import logger as log

potential = thermodynamic_state.potential

Expand Down

0 comments on commit 50d38df

Please sign in to comment.