Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/chfw/pyexcel-io
Browse files Browse the repository at this point in the history
  • Loading branch information
chfw committed Jun 11, 2015
2 parents 79beccf + eec8bd9 commit f6fb1c1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyexcel_io/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@ def to_array(self):
@add_metaclass(ABCMeta)
class BookReaderBase(object):

def set_type(self, file_type):
self.file_type = file_type

@abstractmethod
def sheets(self):
"""Get sheets in a dictionary"""
Expand Down Expand Up @@ -127,9 +130,6 @@ def __init__(self, filename, file_content=None,
sheet = self.get_sheet(native_sheet)
self.mysheets[sheet.name] = sheet.to_array()

def set_type(self, file_type):
self.file_type = file_type

@abstractmethod
def sheet_iterator(self):
pass
Expand Down

0 comments on commit f6fb1c1

Please sign in to comment.