style: Black over updated diffs

This commit is contained in:
Gavin D'souza 2020-12-16 15:17:20 +05:30
parent 7a773d2461
commit ed01c67f54

View file

@ -56,17 +56,14 @@ def get_workflow_safe_globals():
# access to frappe.db.get_value, frappe.db.get_list, and date time utils.
return dict(
frappe=frappe._dict(
db=frappe._dict(
get_value=frappe.db.get_value,
get_list=frappe.db.get_list
),
db=frappe._dict(get_value=frappe.db.get_value, get_list=frappe.db.get_list),
session=frappe.session,
utils=frappe._dict(
now_datetime=frappe.utils.now_datetime,
add_to_date=frappe.utils.add_to_date,
get_datetime=frappe.utils.get_datetime,
now=frappe.utils.now
)
now=frappe.utils.now,
),
)
)