Skip to content

Commit de7e2e6

Browse files
Jason MunroJason Munro
authored andcommitted
Linting
1 parent 9a1ec9f commit de7e2e6

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

mp_api/client/routes/materials/materials.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
from __future__ import annotations
22

3-
from typing import Optional
4-
53
from emmet.core.settings import EmmetSettings
64
from emmet.core.symmetry import CrystalSystem
75
from emmet.core.vasp.calc_types import RunType
@@ -313,10 +311,8 @@ def find_structure(
313311
def get_blessed_entries(
314312
self,
315313
run_type: RunType = RunType.R2SCAN,
316-
material_ids: Optional[list[str]] = None,
317-
uncorrected_energy: Optional[
318-
tuple[Optional[float], Optional[float]] | float
319-
] = None,
314+
material_ids: list[str] | None = None,
315+
uncorrected_energy: tuple[float | None, float | None] | float | None = None,
320316
num_chunks: int | None = None,
321317
chunk_size: int = 1000,
322318
):

0 commit comments

Comments
 (0)