chore: test pr
#12
by
wseo-test
- opened
app.py
CHANGED
@@ -23,7 +23,8 @@ CERTIFIED_USERS_FILENAME = "certified.csv"
|
|
23 |
|
24 |
ORGANIZATION = "pseudolab"
|
25 |
|
26 |
-
|
|
|
27 |
END_DATE = datetime(2023, 11, 10, tzinfo=timezone(timedelta(hours=9)))
|
28 |
|
29 |
|
@@ -244,7 +245,7 @@ def create_certificate(passed, certificate_type, hf_username, first_name, last_n
|
|
244 |
pdf = "./fail.pdf"
|
245 |
# Add a message
|
246 |
message = """
|
247 |
-
You didn't pass
|
248 |
For more information about the certification process, refer to the hackathon page.
|
249 |
If the results here differ from your contributions, make sure you moved your space to the pseudolab organization.
|
250 |
"""
|
@@ -299,9 +300,9 @@ def leaderboard():
|
|
299 |
|
300 |
# Repos that should not be included in the leaderboard
|
301 |
not_included = [
|
302 |
-
'README',
|
303 |
-
'2023-Hackathon-Certification',
|
304 |
-
'huggingface-krew-hackathon2023',
|
305 |
# template repos as well
|
306 |
]
|
307 |
|
|
|
23 |
|
24 |
ORGANIZATION = "pseudolab"
|
25 |
|
26 |
+
# TODO: change back to 2023
|
27 |
+
START_DATE = datetime(2023, 10, 11, tzinfo=timezone(timedelta(hours=9)))
|
28 |
END_DATE = datetime(2023, 11, 10, tzinfo=timezone(timedelta(hours=9)))
|
29 |
|
30 |
|
|
|
245 |
pdf = "./fail.pdf"
|
246 |
# Add a message
|
247 |
message = """
|
248 |
+
You didn't pass the minimum of one contribution to get a certificate of completion.
|
249 |
For more information about the certification process, refer to the hackathon page.
|
250 |
If the results here differ from your contributions, make sure you moved your space to the pseudolab organization.
|
251 |
"""
|
|
|
300 |
|
301 |
# Repos that should not be included in the leaderboard
|
302 |
not_included = [
|
303 |
+
# 'README',
|
304 |
+
# '2023-Hackathon-Certification',
|
305 |
+
# 'huggingface-krew-hackathon2023',
|
306 |
# template repos as well
|
307 |
]
|
308 |
|