This repository was archived by the owner on Jun 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
39 lines (36 loc) · 1.34 KB
/
main.py
File metadata and controls
39 lines (36 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import sys # Please don't touch this
sys.path.append('./individual_introductions') # or this 👉👈
# Put all imports below this line
from individual_introductions import shivam_patel
from individual_introductions import andrew_huth
from individual_introductions import kashvi_chandwani
from individual_introductions import manish_kandepalli
from individual_introductions import harris_ransom
from individual_introductions import Sean_Johnson
from individual_introductions import spenser_butrym
from individual_introductions import jason_merchan
from individual_introductions import aj_lipiarski
from individual_introductions import william_lydon
from individual_introductions import cy_westbrook
from individual_introductions import patrick_dunay
from individual_introductions import maksim_popov
from individual_introductions import mahir_shah
from individual_introductions import hannan_shah
def main():
shivam_patel.intro() # call your intro function
andrew_huth.intro()
kashvi_chandwani.intro()
manish_kandepalli.intro()
Sean_Johnson.intro()
spenser_butrym.intro()
jason_merchan.intro()
aj_lipiarski.intro()
harris_ransom.intro()
william_lydon.intro()
cy_westbrook.intro(32)
patrick_dunay.intro()
maksim_popov.intro()
mahir_shah.intro()
hannan_shah.intro()
if __name__ == '__main__':
main()