chore: linter fix
This commit is contained in:
parent
80a2b79bba
commit
1f64b8fcd8
@ -24,9 +24,11 @@ class Task(NestedSet):
|
|||||||
from typing import TYPE_CHECKING
|
from typing import TYPE_CHECKING
|
||||||
|
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
from erpnext.projects.doctype.task_depends_on.task_depends_on import TaskDependsOn
|
|
||||||
from frappe.types import DF
|
from frappe.types import DF
|
||||||
|
|
||||||
|
from erpnext.projects.doctype.task_depends_on.task_depends_on import TaskDependsOn
|
||||||
|
|
||||||
|
|
||||||
act_end_date: DF.Date | None
|
act_end_date: DF.Date | None
|
||||||
act_start_date: DF.Date | None
|
act_start_date: DF.Date | None
|
||||||
actual_time: DF.Float
|
actual_time: DF.Float
|
||||||
@ -56,7 +58,9 @@ class Task(NestedSet):
|
|||||||
review_date: DF.Date | None
|
review_date: DF.Date | None
|
||||||
rgt: DF.Int
|
rgt: DF.Int
|
||||||
start: DF.Int
|
start: DF.Int
|
||||||
status: DF.Literal["Open", "Working", "Pending Review", "Overdue", "Template", "Completed", "Cancelled"]
|
status: DF.Literal[
|
||||||
|
"Open", "Working", "Pending Review", "Overdue", "Template", "Completed", "Cancelled"
|
||||||
|
]
|
||||||
subject: DF.Data
|
subject: DF.Data
|
||||||
task_weight: DF.Float
|
task_weight: DF.Float
|
||||||
template_task: DF.Data | None
|
template_task: DF.Data | None
|
||||||
|
Loading…
x
Reference in New Issue
Block a user