django-appointment icon indicating copy to clipboard operation
django-appointment copied to clipboard

appointment.views: some improvements

Open deronnax opened this issue 10 months ago • 1 comments

  • the staff_member of the form mandatorily exist (the form guarantees it through it is_valid method), so the whole if not block can be removed
  • a None variable and an empty string are both falsy in Python, you can check for both in the same time with just if xxx

deronnax avatar Mar 29 '24 23:03 deronnax