Skip to content

Commit

Permalink
remove useless FIXME
Browse files Browse the repository at this point in the history
  • Loading branch information
kolok committed Jan 20, 2025
1 parent e3a1fa6 commit 4f35e12
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@
"corsheaders",
]

# FIXME : check if we can manage django forms templating with jinja2
FORM_RENDERER = "django.forms.renderers.TemplatesSetting"


Expand Down
1 change: 0 additions & 1 deletion dags/sources/tasks/transform/transform_df.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,6 @@ def get_latlng_from_geopoint(row: pd.Series, _) -> pd.Series:


def compute_location(row: pd.Series, _):
# FIXME : tests à déplacer
# first column is latitude, second is longitude
lat_column = row.keys()[0]
lng_column = row.keys()[1]
Expand Down
2 changes: 0 additions & 2 deletions data/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ class SuggestionCohorte(models.Model):

@property
def is_source_type(self) -> bool:
# FIXME: ajout de tests
return self.type_action in [
SuggestionAction.SOURCE_AJOUT,
SuggestionAction.SOURCE_MISESAJOUR,
Expand All @@ -80,7 +79,6 @@ def is_source_type(self) -> bool:

@property
def is_clustering_type(self) -> bool:
# FIXME: ajout de tests
return self.type_action == SuggestionAction.CLUSTERING

def __str__(self) -> str:
Expand Down
1 change: 0 additions & 1 deletion qfdmo/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,6 @@ def load_choices(self):
"data-search-solution-form-target": "direction",
},
),
# FIXME: I guess async error comes from here
choices=[
("carte", "Carte"),
("form", "Formulaire"),
Expand Down

0 comments on commit 4f35e12

Please sign in to comment.