Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Munro authored and Jason Munro committed Feb 29, 2024
1 parent 9a1ec9f commit de7e2e6
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions mp_api/client/routes/materials/materials.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
from __future__ import annotations

from typing import Optional

from emmet.core.settings import EmmetSettings
from emmet.core.symmetry import CrystalSystem
from emmet.core.vasp.calc_types import RunType
Expand Down Expand Up @@ -313,10 +311,8 @@ def find_structure(
def get_blessed_entries(
self,
run_type: RunType = RunType.R2SCAN,
material_ids: Optional[list[str]] = None,
uncorrected_energy: Optional[
tuple[Optional[float], Optional[float]] | float
] = None,
material_ids: list[str] | None = None,
uncorrected_energy: tuple[float | None, float | None] | float | None = None,
num_chunks: int | None = None,
chunk_size: int = 1000,
):
Expand Down

0 comments on commit de7e2e6

Please sign in to comment.