Skip to content

Commit

Permalink
Added accidently removed import.
Browse files Browse the repository at this point in the history
Signed-off-by: Timothy Click <tcthepoet@yahoo.com>
  • Loading branch information
Timothy Click authored and Timothy Click committed Feb 14, 2019
1 parent c06d00c commit ad48625
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/fluctmatch/models/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@

from typing import ClassVar, List, Tuple

import numpy as np
import MDAnalysis as mda
from MDAnalysis.core.topologyattrs import Bonds
from MDAnalysis.topology import guessers
from MDAnalysis.coordinates.memory import MemoryReader

from . import base
from .selection import *


class Generic(base.ModelBase):
Expand Down
2 changes: 1 addition & 1 deletion src/fluctmatch/models/ions.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@

from typing import ClassVar, List, MutableMapping

import numpy as np
from MDAnalysis.core.topologyattrs import Atomtypes, Bonds

from .base import ModelBase
from .selection import *


class SolventIons(ModelBase):
Expand Down
2 changes: 1 addition & 1 deletion src/fluctmatch/models/nucleic.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@

from typing import ClassVar, List, Tuple, Mapping

import numpy as np
import MDAnalysis as mda
from MDAnalysis.core.topologyattrs import Bonds, Charges

from .base import ModelBase
from .selection import *


class Nucleic3(ModelBase):
Expand Down
1 change: 0 additions & 1 deletion src/fluctmatch/models/protein.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
from MDAnalysis.core.topologyattrs import Bonds

from .base import ModelBase
from .selection import *


class Calpha(ModelBase):
Expand Down

0 comments on commit ad48625

Please sign in to comment.