Skip to content

Commit

Permalink
updated motions_for_hearing and deleted unused motions_attached
Browse files Browse the repository at this point in the history
  • Loading branch information
tobyfey committed Jul 31, 2024
1 parent f2b1c00 commit dc4a838
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,6 @@ code: |
opposing_party_consent_to_motion_to_shorten_time
no_dilatory_motive
may_resolve_case_more_efficiently
motions_attached
motion_to_shorten_time_order = True
---
id: precheck_items
Expand Down Expand Up @@ -856,24 +855,18 @@ code: |
id: motions for hearing
code: |
motions_for_hearing_temp = list()
if motion_to_shorten_time_attachment.enabled and "Motion to Shorten Time" not in motions_for_hearing_temp:
motions_for_hearing_temp.append("Motion to Shorten Time")
if motion_to_set_aside_attachment.enabled and "Motion to Set Aside" not in motions_for_hearing_temp:
motions_for_hearing_temp.append("Motion to Set Aside")
if eviction_motion_for_leave_attachment.enabled and "Motion for Leave to File Responsive Pleadings" not in motions_for_hearing_temp:
motions_for_hearing_temp.append("Motion for Leave to File Responsive Pleadings")
if eviction_motion_to_continue_attachment.enabled and "Motion to Continue" not in motions_for_hearing_temp:
motions_for_hearing_temp.append("Motion to Continue")
motions_for_hearing = motions_for_hearing_temp
---
id: motions for hearing
code: |
motions_for_hearing_temp = list()
if motion_to_shorten_time_attachment.enabled and "Motion to Shorten Time" not in motions_for_hearing_temp:
motions_for_hearing_temp.append("Motion to Shorten Time")
if eviction_motion_for_leave_attachment.enabled and "Motion for Leave to File Responsive Pleadings" not in motions_for_hearing_temp:
motions_for_hearing_temp.append("Motion for Leave to File Responsive Pleadings")
if eviction_motion_to_continue_attachment.enabled and "Motion to Continue" not in motions_for_hearing_temp:
motions_for_hearing_temp.append("Motion to Continue")
motions_attached = motions_for_hearing_temp
if motion_to_dismiss_attachment.enabled and "Motion to Dismiss" not in motions_for_hearing_temp:
motions_for_hearing_temp.append("Motion to Dismiss")
motions_for_hearing = motions_for_hearing_temp
---
id: assembled_documents
code: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,6 @@ code: |
opposing_party_consent_to_motion_to_shorten_time
no_dilatory_motive
may_resolve_case_more_efficiently
motions_attached
motion_to_shorten_time_preview
motion_to_shorten_time_order = True
---
Expand Down Expand Up @@ -422,13 +421,6 @@ code: |
temp_motions_for_hearing.append(motion_checkboxes[motion])
motions_for_hearing = temp_motions_for_hearing
---
code: |
temp_motions_attached = list()
for motion in motion_list.true_values():
if not motion == "motion_to_shorten_time":
temp_motions_attached.append(motion_list[motion])
motions_attached = temp_motions_attached
---
only sets: trial_date_set
question: Trial Date?
fields:
Expand Down

0 comments on commit dc4a838

Please sign in to comment.