We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1c53e9 commit 0172cd3Copy full SHA for 0172cd3
service/integration/discord/verifying_student.py
@@ -95,7 +95,11 @@ def _generic_validation_error_message() -> str:
95
Please try again or contact a STAIR member.
96
"""
97
# current month is july - september or december - february
98
- if 7 <= datetime.now().month <= 9 or 12 <= datetime.now().month <= 2:
+ if (
99
+ 7 <= datetime.now().month <= 9
100
+ or 12 <= datetime.now().month
101
+ or datetime.now().month <= 2
102
+ ):
103
base += """
104
If you are a new student, please try again after the first week of the semester.
105
0 commit comments