Skip to content

Commit

Permalink
Ruff check
Browse files Browse the repository at this point in the history
  • Loading branch information
ndaelman committed Oct 7, 2024
1 parent 8ad7c72 commit 0b573b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/nomad_simulations/schema_packages/model_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
# limitations under the License.
#

import re
from functools import lru_cache
from hashlib import sha1
import re
from typing import TYPE_CHECKING, Optional

import ase
Expand All @@ -42,16 +42,16 @@
from nomad.units import ureg

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

from nomad_simulations.schema_packages.atoms_state import AtomsState
from nomad_simulations.schema_packages.utils import (
catch_not_implemented,
get_sibling_section,
is_not_representative,
catch_not_implemented,
)

configuration = config.get_plugin_entry_point(
Expand Down
2 changes: 1 addition & 1 deletion src/nomad_simulations/schema_packages/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@

from .utils import (
RussellSaundersState,
catch_not_implemented,
get_composition,
get_sibling_section,
get_variables,
is_not_representative,
catch_not_implemented,
)

0 comments on commit 0b573b4

Please sign in to comment.