Skip to content

Commit

Permalink
Remove duplicate function
Browse files Browse the repository at this point in the history
  • Loading branch information
cmutel committed Feb 22, 2021
1 parent d3c3482 commit 2bc2106
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions bw2io/extractors/excel.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,6 @@ def get_cell_value_handle_error(cell):
return cell.value


def get_cell_value_handle_error(cell):
if cell.ctype == 5:
# Error type
return None
else:
return cell.value


class ExcelExtractor(object):
@classmethod
def extract(cls, filepath):
Expand Down

0 comments on commit 2bc2106

Please sign in to comment.