Codebase list pyexcel-ods / 5e54845
:ambulance: remove the f**k pdb in the test. chfw 6 years ago
2 changed file(s) with 2 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
109109 # python 2
110110 # Hei zipfile in odfpy would do a seek
111111 # but stream from urlib cannot do seek
112 import pdb; pdb.set_trace()
113112 file_stream = BytesIO(file_stream.read())
114113 try:
115114 file_stream.seek(0)
141141
142142
143143 def test_issue_23():
144 if not IN_TRAVIS:
145 raise SkipTest()
144146 pe.get_book(url="https://github.com/pyexcel/pyexcel-ods/raw/master/tests/fixtures/white_space.ods"); # flake8: noqa
145147
146148