Skip to content

Commit 25547df

Browse files
committed
Define a constant instead of duplicating this literal "AI Engineer" 4
times.
1 parent 6c38195 commit 25547df

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

alphaspheredotai_github_io/team/member/__init__.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@
66
from alphaspheredotai_github_io.team.member.yousef_mohamed import YousefMohamed
77
from alphaspheredotai_github_io.team.team_member import SocialLinks
88

9+
AI_ENGINEER_ROLE = "AI Engineer"
10+
911
AbdelrahmanAminInfo = AbdelrahmanAmin(
1012
name="Abdelrahman Amin",
11-
role="AI Engineer",
13+
role=AI_ENGINEER_ROLE,
1214
avatar="/AbdelrahmanAmin.jpg",
1315
bio="",
1416
social_links=SocialLinks(
@@ -19,7 +21,7 @@
1921
)
2022
AbdelrahmanMostafaInfo = AbdelrahmanMostafa(
2123
name="Abdelrahman Mostafa",
22-
role="AI Engineer",
24+
role=AI_ENGINEER_ROLE,
2325
avatar="/AbdelrahmanMostafa.jpg",
2426
bio="",
2527
social_links=SocialLinks(
@@ -30,7 +32,7 @@
3032
)
3133
MohamedHishamInfo = MohamedHisham(
3234
name="Mohamed Hisham",
33-
role="AI Engineer",
35+
role=AI_ENGINEER_ROLE,
3436
avatar="/MohamedHisham.jpg",
3537
bio="",
3638
social_links=SocialLinks(
@@ -41,7 +43,7 @@
4143
)
4244
YousefMohamedInfo = YousefMohamed(
4345
name="Yousef Mohamed",
44-
role="AI Engineer",
46+
role=AI_ENGINEER_ROLE,
4547
avatar="/YousefMohamed.jpg",
4648
bio="",
4749
social_links=SocialLinks(

0 commit comments

Comments
 (0)