Skip to content

Commit

Permalink
Remove unused cluster class
Browse files Browse the repository at this point in the history
  • Loading branch information
MBartkowiakSTFC committed Nov 29, 2024
1 parent 2691c51 commit 3f41321
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions MDANSE/Src/MDANSE/Chemistry/ChemicalSystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#

from __future__ import annotations
from typing import TYPE_CHECKING, List, Tuple, Dict, Any
from typing import List, Tuple, Dict, Any
import copy
from functools import reduce

Expand All @@ -26,16 +26,6 @@
from MDANSE.MLogging import LOG
from MDANSE.Chemistry import ATOMS_DATABASE

if TYPE_CHECKING:
from MDANSE.MolecularDynamics.Trajectory import Trajectory


class BasicCluster:

def __init__(self, index_list: List[int], **kwargs):
self._name = kwargs.get("name", "unknown")
self._atoms = index_list


class ChemicalSystem:

Expand Down

0 comments on commit 3f41321

Please sign in to comment.