Automatic linting

This commit is contained in:
Github-actions
2025-04-26 06:40:21 +00:00
parent beee865b24
commit 7970afd2bf
2 changed files with 5 additions and 1 deletions

View File

@@ -25,6 +25,9 @@ class MeasurementEntryFilterSet(filters.FilterSet):
model = Measurement
fields = {
'id': ['exact', 'in'],
'category': ['exact', 'in', ],
'category': [
'exact',
'in',
],
'date': ['exact', 'gt', 'gte', 'lt', 'lte'],
}

View File

@@ -33,6 +33,7 @@ from wger.measurements.models import (
Measurement,
)
logger = logging.getLogger(__name__)