Skip to content

Commit

Permalink
chore: remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
dfguerrerom committed Sep 11, 2024
1 parent 6085cda commit d22f3ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sepal_ui/sepalwidgets/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,10 @@ def _get_country_items(self, locales: list) -> List[str]:
Returns:
the list of country widget to display in the app
"""
print(locales)
# print(locales)
country_list = []
filtered_countries = self.COUNTRIES[self.COUNTRIES.code.isin(locales)]
print(filtered_countries)
# print(filtered_countries)
for r in filtered_countries.itertuples(index=False):
children = [
v.ListItemContent(class_="mr-2", children=[v.ListItemTitle(children=[r.name])]),
Expand Down

0 comments on commit d22f3ce

Please sign in to comment.