File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 24
24
# Winter (25): September 28 - January 15
25
25
# Spring (35): January 16 - April 14
26
26
# Summer (45): April 15 - June 30
27
- # check college code by going to the tms website and selecting your college from the left sidebar
27
+ # check college code by going to the tms website and selecting your college
28
+ # from the left sidebar
28
29
# the URL bar should update and it should end with something like collCode=CI
29
30
# the characters after the = sign is your college code
30
31
# e.g. in this URL the college code is CI
@@ -44,7 +45,9 @@ def get_environ(key: str, required: bool = True) -> str:
44
45
return os .environ [key ]
45
46
elif required :
46
47
print (
47
- f"{ key } is missing from your environment variables and is required to run this script. See { environ_help_url } for more information and help."
48
+ f"{ key } is missing from your environment variables and is required "
49
+ f"to run this script. See { environ_help_url } for more information "
50
+ f"and help."
48
51
)
49
52
sys .exit (1 )
50
53
else :
@@ -54,7 +57,8 @@ def get_environ(key: str, required: bool = True) -> str:
54
57
# Drexel Connect Credentials
55
58
drexel_email = get_environ ("DREXEL_EMAIL" )
56
59
drexel_password = get_environ ("DREXEL_PASSWORD" )
57
- # This is not required if the user is using a separate authenticator app and will manually approve the login attempt
60
+ # This is not required if the user is using a separate authenticator app
61
+ # and will manually approve the login attempt
58
62
drexel_mfa_secret_key = get_environ ("DREXEL_MFA_SECRET_KEY" , False ) or None
59
63
60
64
# URL's
You can’t perform that action at this time.
0 commit comments