Skip to content

Commit 576ee0d

Browse files
committed
Rename get_sous_categories to get_sous_categories_ids
1 parent 059ac5a commit 576ee0d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

qfdmo/views/carte.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ def get_context_data(self, **kwargs):
5050
def _get_selected_action_ids(self):
5151
return [a.id for a in self._get_selected_action()]
5252

53-
def get_sous_categories(self):
53+
def get_sous_categories_ids(self):
5454
if sous_categories := self.displayed_acteur_form.cleaned_data.get(
5555
"sous_categories"
5656
):
5757
return sous_categories.values_list("pk", flat=True)
5858

59-
return super().get_sous_categories()
59+
return super().get_sous_categories_ids()
6060

6161

6262
class ProductCarteView(CarteSearchActeursView):

0 commit comments

Comments
 (0)