Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions pandas_datareader/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -701,9 +701,6 @@ def _option_frames_from_url(self, url):
calls = frames[self._TABLE_LOC['calls']]
puts = frames[self._TABLE_LOC['puts']]

if len(calls) == 0 or len(puts) == 0:
raise RemoteDataError('Received no data from Yahoo at url: %s' % url)

calls = self._process_data(calls, 'call')
puts = self._process_data(puts, 'put')

Expand Down
Loading