mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-09 16:12:53 +00:00
chore: Cleanup imports (#27320)
* chore: Added isort to pre-commit config * chore: Sort imports with isort * chore: Remove imports with pycln * chore: Sort imports with isort * chore: Fix import issues * chore: Fix sider issues * chore: linting * chore: linting / sorting import from ecommerce refactor merge * ci: dont allow unused imports * chore: sort / clean ecommerce imports Co-authored-by: Ankush Menat <ankush@iwebnotes.com>
This commit is contained in:
@@ -3,10 +3,12 @@
|
||||
# For license information, please see license.txt
|
||||
|
||||
from __future__ import unicode_literals
|
||||
import frappe
|
||||
|
||||
import json
|
||||
|
||||
import frappe
|
||||
from frappe.utils import cint
|
||||
from erpnext.healthcare.utils import render_docs_as_html
|
||||
|
||||
|
||||
@frappe.whitelist()
|
||||
def get_feed(name, document_types=None, date_range=None, start=0, page_length=20):
|
||||
|
||||
@@ -1,8 +1,10 @@
|
||||
import frappe
|
||||
from datetime import datetime
|
||||
from frappe import _
|
||||
from frappe.utils import getdate, get_timespan_date_range
|
||||
import json
|
||||
from datetime import datetime
|
||||
|
||||
import frappe
|
||||
from frappe import _
|
||||
from frappe.utils import get_timespan_date_range, getdate
|
||||
|
||||
|
||||
@frappe.whitelist()
|
||||
def get_therapy_sessions_count(patient):
|
||||
|
||||
Reference in New Issue
Block a user