Skip to content

Commit

Permalink
fix: remove deleted values
Browse files Browse the repository at this point in the history
  • Loading branch information
makcimerrr committed Dec 4, 2024
1 parent 2d30249 commit 848611b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/config_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ def load_config():
with open('data/config.json', 'r') as f:
return json.load(f)


def load_technologies():
with open('data/technologies.json', 'r') as f:
return json.load(f)
Expand All @@ -20,7 +21,6 @@ def load_technologies():
# Variables

technologies = techs["technologies"]
role_ping = config["role_ping"]
role_ping_cdi = config["role_ping_cdi"]
forum_channel_id = config["forum_channel_id"]
forum_channel_id_cdi = config["forum_channel_id_cdi"]
Expand All @@ -33,4 +33,4 @@ def load_technologies():
discord_token = os.getenv("TOKEN")
query_intern = os.getenv("QUERY_INTERNSHIP")
query_fulltime = os.getenv("QUERY_FULLTIME")
forbidden_words = ["Openclassrooms", "MyDigitalSchool", "ISCOD", "EPSI", "2I Academy", "Studi CFA"]
forbidden_words = ["Openclassrooms", "MyDigitalSchool", "ISCOD", "EPSI", "2I Academy", "Studi CFA"]

0 comments on commit 848611b

Please sign in to comment.