Skip to content

Commit

Permalink
Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasturcani committed May 1, 2022
1 parent 70d7484 commit 2fb7a2e
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/stk/molecular/molecules/constructed_molecule.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,21 @@
from __future__ import annotations

import logging
import numpy as np
import typing

import numpy as np
import rdkit.Chem.AllChem as rdkit

from ...utilities import OneOrMany
from ..atoms import Atom, AtomInfo
from ..bonds import Bond, BondInfo
from .molecule import Molecule
from .building_block import BuildingBlock
from .utilities import get_bond_info_atom_ids, sort_bond_atoms_by_id
from ..topology_graphs import TopologyGraph
from ..topology_graphs.topology_graph.construction_result import (
ConstructionResult,
)

from .building_block import BuildingBlock
from .molecule import Molecule
from .utilities import get_bond_info_atom_ids, sort_bond_atoms_by_id

logger = logging.getLogger(__name__)

Expand Down

0 comments on commit 2fb7a2e

Please sign in to comment.