Skip to content

Commit

Permalink
Merge pull request #285 from tjanas/patch-1
Browse files Browse the repository at this point in the history
Python 2.6.6 compatibility fix
  • Loading branch information
dilshod authored Sep 12, 2024
2 parents 007178d + 3ea1936 commit 76568f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xlsx2csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,13 @@
48: '##0.0e+0',
49: '@',
}
CONTENT_TYPES = {
CONTENT_TYPES = set((
'shared_strings',
'styles',
'workbook',
'worksheet',
'relationships',
}
))

DEFAULT_APP_PATH = "/xl"
DEFAULT_WORKBOOK_PATH = DEFAULT_APP_PATH + "/workbook.xml"
Expand Down

0 comments on commit 76568f7

Please sign in to comment.