10000 Add call to super to fix #238 · davidmoss/github3.py@a7c29ee · GitHub
[go: up one dir, main page]

Skip to content

Commit a7c29ee

Browse files
committed
Add call to super to fix sigmavirus24#238
1 parent e81ef91 commit a7c29ee

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

github3/search/repository.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
class RepositorySearchResult(GitHubCore):
99
def __init__(self, data, session=None):
10+
super(RepositorySearchResult, self).__init__(data, session)
1011
result = data.copy()
1112
#: Score of the result
1213
self.score = result.pop('score')

0 commit comments

Comments
 (0)
0