Skip to content

Commit

Permalink
Cleanup old imports
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielelanaro committed Dec 8, 2015
1 parent 78ddb39 commit ff1a95e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
4 changes: 1 addition & 3 deletions chemlab/core/attributes.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import numpy as np
from pandas.hashtable import Int64HashTable


class EntityProperty(object):
'''Main base class for ChemicalEntity property specification'''
Expand Down Expand Up @@ -241,7 +239,7 @@ def remap(self, from_map, to_map, inplace=True):
else:
return self.copy()

# Remap columns
# Remap columns -- pandas version
# hashtable = Int64HashTable()
# hashtable.map(np.asarray(from_map),
# np.asarray(to_map))
Expand Down
1 change: 0 additions & 1 deletion chemlab/core/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from .base import ChemicalEntity, Field, Attribute, Relation, InstanceRelation
from .serialization import json_to_data, data_to_json
from ..utils.pbc import periodic_distance
from .. import config

class Atom(ChemicalEntity):
__dimension__ = 'atom'
Expand Down

0 comments on commit ff1a95e

Please sign in to comment.