Skip to content

Commit

Permalink
import cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
shyamd committed Oct 21, 2020
1 parent 9c0c9f8 commit 0398185
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 14 deletions.
1 change: 1 addition & 0 deletions tests/conftest.py
@@ -1,4 +1,5 @@
from pathlib import Path

import pytest


Expand Down
5 changes: 3 additions & 2 deletions tests/emmet-builders/test_utils.py
@@ -1,7 +1,8 @@
from itertools import combinations, chain
from itertools import chain, combinations

from emmet.builders.utils import (
maximal_spanning_non_intersecting_subsets,
chemsys_permutations,
maximal_spanning_non_intersecting_subsets,
)


Expand Down
2 changes: 1 addition & 1 deletion tests/emmet-builders/test_vasp.py
@@ -1,7 +1,7 @@
import pytest
from maggma.stores import JSONStore, MemoryStore
from emmet.builders.vasp.task_validator import TaskValidator

from emmet.builders.vasp.task_validator import TaskValidator

intermediate_stores = ["validation"]

Expand Down
4 changes: 2 additions & 2 deletions tests/emmet-core/test_settings.py
@@ -1,7 +1,7 @@
import os
import json
from random import random
import os
from pathlib import PosixPath
from random import random

from emmet.core.settings import EmmetSettings

Expand Down
5 changes: 3 additions & 2 deletions tests/emmet-core/test_structuremetadata.py
@@ -1,8 +1,9 @@
import pytest
from pymatgen import Lattice
from emmet.stubs import Structure
from emmet.core.symmetry import SymmetryData, CrystalSystem

from emmet.core.structure import StructureMetadata
from emmet.core.symmetry import CrystalSystem, SymmetryData
from emmet.stubs import Structure


@pytest.fixture
Expand Down
1 change: 1 addition & 0 deletions tests/emmet-core/test_thermo.py
@@ -1,6 +1,7 @@
import pytest
from monty.serialization import MontyDecoder
from pymatgen.entries.entry_tools import EntrySet

from emmet.core.thermo import ThermoDoc


Expand Down
10 changes: 5 additions & 5 deletions tests/emmet-core/test_utils.py
@@ -1,14 +1,14 @@
import datetime
import json
import os
import unittest
import numpy as np
import json
import datetime
from bson.objectid import ObjectId
from enum import Enum

import numpy as np
import pytest
from bson.objectid import ObjectId
from monty.json import MSONable

import pytest
from emmet.core.utils import get_sg, group_structures, jsanitize


Expand Down
6 changes: 4 additions & 2 deletions tests/emmet-core/vasp/test_materials.py
@@ -1,9 +1,11 @@
import pytest
import json

import pytest
from monty.io import zopen

from emmet.core.vasp.calc_types import TaskType
from emmet.core.vasp.material import MaterialsDoc
from emmet.core.vasp.task import TaskDocument
from emmet.core.vasp.calc_types import TaskType


@pytest.fixture
Expand Down

0 comments on commit 0398185

Please sign in to comment.