nangelov commited on
Commit
733fef2
·
verified ·
1 Parent(s): d21f9e0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -33,7 +33,8 @@ def get_Competition_Code(competition_name: str)-> str:
33
  "SA": "Serie A",
34
  "PL": "Premier League"
35
  }
36
- print(competition_name)
 
37
  # Iterate through the dictionary to find the matching competition name.
38
  for code, name in competitions.items():
39
  if name.lower() == competition.lower():
 
33
  "SA": "Serie A",
34
  "PL": "Premier League"
35
  }
36
+
37
+ print(competition_name)
38
  # Iterate through the dictionary to find the matching competition name.
39
  for code, name in competitions.items():
40
  if name.lower() == competition.lower():