style: add blank lines for improved code readability
Add extra blank lines in booking_system and meetings views to improve code structure and visual separation between logical sections. This enhances code readability without affecting functionality. Changes: - booking_system/views.py: added blank line after availability_system section - meetings/views.py: added blank line after get_queryset method
This commit is contained in:
parent
774ac584b4
commit
bc001074b1
@ -376,6 +376,7 @@ def api_root(request, format=None):
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
"availability_system": {
|
"availability_system": {
|
||||||
"description": "Flexible day-time availability management",
|
"description": "Flexible day-time availability management",
|
||||||
"features": [
|
"features": [
|
||||||
|
|||||||
@ -298,6 +298,7 @@ class UserAppointmentStatsView(generics.GenericAPIView):
|
|||||||
id__in=appointment_ids
|
id__in=appointment_ids
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def get(self, request, *args, **kwargs):
|
def get(self, request, *args, **kwargs):
|
||||||
queryset = self.get_queryset()
|
queryset = self.get_queryset()
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user