fix(treewide): manual ruff fixes

(cherry picked from commit f63396ef47)
Signed-off-by: Akhil Narang <me@akhilnarang.dev>
This commit is contained in:
Akhil Narang
2024-03-27 12:16:13 +05:30
parent 960ef14b7a
commit 7828eee014
35 changed files with 121 additions and 137 deletions

View File

@@ -3,6 +3,7 @@
import datetime
import typing
import frappe
from frappe import _
@@ -36,7 +37,7 @@ class AppointmentBookingSettings(Document):
success_redirect_url: DF.Data | None
# end: auto-generated types
agent_list = [] # Hack
agent_list: typing.ClassVar[list] = [] # Hack
min_date = "01/01/1970 "
format_string = "%d/%m/%Y %H:%M:%S"