-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9bd89e9
commit da6b98c
Showing
7 changed files
with
54 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,13 @@ | ||
from canvas_sdk.commands.assess.assess import AssessCommand | ||
from canvas_sdk.commands.diagnose.diagnose import DiagnoseCommand | ||
from canvas_sdk.commands.goal.goal import GoalCommand | ||
from canvas_sdk.commands.plan.plan import PlanCommand | ||
from canvas_sdk.commands.assess import AssessCommand | ||
from canvas_sdk.commands.diagnose import DiagnoseCommand | ||
from canvas_sdk.commands.goal import GoalCommand | ||
from canvas_sdk.commands.history_present_illness import HistoryOfPresentIllnessCommand | ||
from canvas_sdk.commands.plan import PlanCommand | ||
|
||
__all__ = ("PlanCommand", "AssessCommand", "DiagnoseCommand", "GoalCommand") | ||
__all__ = ( | ||
"PlanCommand", | ||
"AssessCommand", | ||
"DiagnoseCommand", | ||
"GoalCommand", | ||
"HistoryOfPresentIllnessCommand", | ||
) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
from canvas_sdk.commands.base import _BaseCommand | ||
|
||
|
||
class HistoryOfPresentIllnessCommand(_BaseCommand): | ||
"""A class for managing a HPI command within a specific note.""" | ||
|
||
narrative: str | ||
|
||
@property | ||
def values(self) -> dict: | ||
"""The HPI command's field values.""" | ||
return {"narrative": self.narrative} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters