Fixed minor typos

This commit is contained in:
JKuijperM 2026-07-29 15:14:14 +02:00
parent 4e03c65c07
commit 4ad2b59a1c
3 changed files with 5 additions and 7 deletions

View File

@ -122,15 +122,15 @@ class GoalForm(forms.ModelForm):
class Meta:
model = Goal
fields = [
'name',
'kind',
'target_amount',
'category',
"name",
"kind",
"target_amount",
"category",
"include_subcategories",
"account",
"start_date",
"period",
"show_on_home"
"show_on_home",
]
widgets = {
"start_date": forms.DateInput(

View File

@ -5,7 +5,6 @@ from django.conf import settings
from django.db.models import Sum
from functools import cached_property
from django.utils.text import slugify
from django.db.models.fields import related
from django.db.models.functions import ExtractMonth

View File

@ -237,7 +237,6 @@ def expense_create(request):
@login_required
def expense_edit(request, pk):
# sourcery skip: assign-if-exp, merge-else-if-into-elif
expense = get_object_or_404(
Expense,
pk=pk,