8000 Fix up pull request #460 · pythonthings/github3.py@168eebe · GitHub
[go: up one dir, main page]

Skip to content

Commit 168eebe

Browse files
committed
Fix up pull request sigmavirus24#460
1 parent 136f51e commit 168eebe

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

github3/github.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -355,10 +355,7 @@ def emojis(self):
355355
}
356356
"""
357357
url = self._build_url('emojis')
358-
data = self._json(self._get(url), 200)
359-
del data['ETag']
360-
del data['Last-Modified']
361-
return data
358+
return self._json(self._get(url), 200, include_cache_info=False)
362359

363360
@requires_basic_auth
364361
def feeds(self):

0 commit comments

Comments
 (0)
0