We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f888623 commit 84c3c34Copy full SHA for 84c3c34
1 file changed
oshminer/GitHub.py
@@ -4,4 +4,13 @@
4
# SPDX-License-Identifier: AGPL-3.0-or-later
5
6
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}")
+ 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