We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a1ec9f commit de7e2e6Copy full SHA for de7e2e6
1 file changed
mp_api/client/routes/materials/materials.py
@@ -1,7 +1,5 @@
1
from __future__ import annotations
2
3
-from typing import Optional
4
-
5
from emmet.core.settings import EmmetSettings
6
from emmet.core.symmetry import CrystalSystem
7
from emmet.core.vasp.calc_types import RunType
@@ -313,10 +311,8 @@ def find_structure(
313
311
def get_blessed_entries(
314
312
self,
315
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,
+ material_ids: list[str] | None = None,
+ uncorrected_energy: tuple[float | None, float | None] | float | None = None,
320
num_chunks: int | None = None,
321
chunk_size: int = 1000,
322
):
0 commit comments