Skip to content

Commit

Permalink
Fix ruff linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ndaelman committed Jul 18, 2024
1 parent a4145e1 commit 3ee922e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/nomad_simulations/schema_packages/numerical_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,8 @@
#

from itertools import accumulate, chain, tee
from typing import TYPE_CHECKING, Optional, Self, Union
from typing import TYPE_CHECKING, Optional, Union

from nomad_simulations.schema_packages.atoms_state import AtomsState, OrbitalsState
import numpy as np
import pint
from ase.dft.kpoints import get_monkhorst_pack_size_and_offset, monkhorst_pack
Expand All @@ -28,14 +27,17 @@
from nomad.metainfo import JSON, MEnum, Quantity, SubSection
from nomad.units import ureg

from nomad_simulations.schema_packages.atoms_state import AtomsState

if TYPE_CHECKING:
from nomad.datamodel.datamodel import EntryArchive
from nomad.metainfo import Context, Section
from structlog.stdlib import BoundLogger

from abc import ABC, abstractmethod

from nomad_simulations.schema_packages.model_system import ModelSystem
from nomad_simulations.schema_packages.utils import is_not_representative
from abc import ABC, abstractmethod


class NumericalSettings(ArchiveSection):
Expand Down

0 comments on commit 3ee922e

Please sign in to comment.