fix: min likes for certificate to 5
Browse files
app.py
CHANGED
@@ -27,7 +27,7 @@ START_DATE = datetime(2023, 10, 20, tzinfo=timezone(timedelta(hours=9)))
|
|
27 |
END_DATE = datetime(2023, 11, 10, tzinfo=timezone(timedelta(hours=9)))
|
28 |
|
29 |
|
30 |
-
def has_contributions(repo_type, hf_username, organization, likes=
|
31 |
"""
|
32 |
Check if a user has contributions in the specified repository type.
|
33 |
:param repo_type: A repo type supported by the Hub
|
|
|
27 |
END_DATE = datetime(2023, 11, 10, tzinfo=timezone(timedelta(hours=9)))
|
28 |
|
29 |
|
30 |
+
def has_contributions(repo_type, hf_username, organization, likes=5):
|
31 |
"""
|
32 |
Check if a user has contributions in the specified repository type.
|
33 |
:param repo_type: A repo type supported by the Hub
|