Skip to content

Commit 84c3c34

Browse files
committed
Add dummy return value from GitHub queries
1 parent f888623 commit 84c3c34

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

oshminer/GitHub.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,13 @@
44
# SPDX-License-Identifier: AGPL-3.0-or-later
55

66
def make_GitHub_request(url: str, data: list) -> str:
7-
print(f"Constructing an API request to GitHub for repository {url} for the following data {data}")
7+
print(f"Constructing an API request to GitHub for repository {url} for the following data {data}")
8+
9+
# Create a dictionary to hold results from GitHub API query
10+
results: dict = {
11+
"repository": str(url),
12+
"platform": "Wikifactory",
13+
"requested_data": {}
14+
}
15+
16+
return results

0 commit comments

Comments
 (0)