Reformat code after manual edits to maintain CI compliance

- Apply Black formatting to admin.py, forms.py, and views.py after manual edits
- Fix import statement ordering with isort
- Ensure all manually edited files meet automated code quality standards
- Maintain CI/CD pipeline compliance for continued automated deployment
This commit is contained in:
Stiftung Development
2025-09-06 21:10:42 +02:00
parent 6256371e8f
commit fe98116d19
3 changed files with 61 additions and 20 deletions

View File

@@ -4,11 +4,22 @@ from django import forms
from django.core.exceptions import ValidationError
from django.utils import timezone
from .models import (BankTransaction, Destinataer, DestinataerNotiz,
DestinataerUnterstuetzung, DokumentLink, Foerderung, Land,
LandAbrechnung, Paechter, Person, Rentmeister,
StiftungsKonto, UnterstuetzungWiederkehrend,
Verwaltungskosten)
from .models import (
BankTransaction,
Destinataer,
DestinataerNotiz,
DestinataerUnterstuetzung,
DokumentLink,
Foerderung,
Land,
LandAbrechnung,
Paechter,
Person,
Rentmeister,
StiftungsKonto,
UnterstuetzungWiederkehrend,
Verwaltungskosten,
)
class RentmeisterForm(forms.ModelForm):