Change default value of license field to empty string in pipeline
Browse files- pipeline.py +1 -1
pipeline.py
CHANGED
@@ -60,7 +60,7 @@ def download_and_extract(repos, headers=None):
|
|
60 |
"funcs": set(),
|
61 |
"docs": set(),
|
62 |
"topics": [],
|
63 |
-
"license":
|
64 |
"stars": metadata.get("stargazers_count"),
|
65 |
}
|
66 |
if metadata.get("topics"):
|
|
|
60 |
"funcs": set(),
|
61 |
"docs": set(),
|
62 |
"topics": [],
|
63 |
+
"license": "",
|
64 |
"stars": metadata.get("stargazers_count"),
|
65 |
}
|
66 |
if metadata.get("topics"):
|