We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76bccd6 commit 42595d0Copy full SHA for 42595d0
github2pandas/utility.py
@@ -118,9 +118,11 @@ def check_for_updates_paginated(new_paginated_list, old_df):
118
if old_df.empty:
119
# .totalCount crashes in case of a total empty repository
120
try:
121
- new_paginated_list.totalCount == 0
+ count = new_paginated_list.totalCount
122
except:
123
return False
124
+ if count == 0:
125
+ return False
126
return True
127
if not new_paginated_list.totalCount == old_df.count()[0]:
128
0 commit comments