Skip to content
Snippets Groups Projects
Verified Commit 5ea24b6f authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Fix lint

parent 4c92e763
No related branches found
No related tags found
1 merge request!2Resolve "Frontend for Models"
......@@ -375,9 +375,7 @@ class BreakSlot(Slot):
"""A break is a time period that can supervised and in which no lessons take place."""
def __str__(self) -> str:
return (
f"{time_format(self.time_start)} - {time_format(self.time_end)}"
)
return f"{time_format(self.time_start)} - {time_format(self.time_end)}"
class Meta:
verbose_name = _("Break")
......
from django.core.exceptions import PermissionDenied
from django.db.models import Q
import graphene
from graphene_django.types import DjangoObjectType
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment