From 8d343648af0fda2e1a5fb778e6b3f71052e8f0c9 Mon Sep 17 00:00:00 2001 From: Arthur D <110528300+c0rydoras@users.noreply.github.com> Date: Mon, 22 Apr 2024 11:46:03 +0200 Subject: [PATCH] chore: move todo from docstring to comments Co-authored-by: David Vogt --- timed/projects/filters.py | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/timed/projects/filters.py b/timed/projects/filters.py index 3e1a773d..7c51c605 100644 --- a/timed/projects/filters.py +++ b/timed/projects/filters.py @@ -82,15 +82,11 @@ class Meta: class MyMostFrequentTaskFilter(Filter): - """Filter most frequently used tasks. + """Filter most frequently used tasks.""" - Todo: - ---- - From an api and framework standpoint instead of an additional filter it - would be more desirable to assign an ordering field frecency and to - limit by use paging. This is way harder to implement therefore on hold. - - """ + # TODO: From an api and framework standpoint instead of an additional filter it + # would be more desirable to assign an ordering field frecency and to + # limit by use paging. This is way harder to implement therefore on hold. def filter(self, qs, value): """Filter for given most frequently used tasks.