Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions spiff_example/cli/__init__.py → app/cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
from .subcommands import add_subparsers, configure_logging
from .ui import CursesUI, CursesUIError
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 1 addition & 2 deletions runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
import sys, traceback
from argparse import ArgumentParser

from spiff_example.curses_ui import CursesUI, CursesUIError
from spiff_example.cli import add_subparsers, configure_logging
from app.cli import add_subparsers, configure_logging, CursesUI, CursesUIError

if __name__ == '__main__':

Expand Down
4 changes: 2 additions & 2 deletions spiff_example/camunda/curses_handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
from SpiffWorkflow.util.deep_merge import DeepMerge
from SpiffWorkflow.camunda.specs.user_task import EnumFormField

from ..curses_ui.user_input import Field, Option, SimpleField
from ..curses_ui.human_task_handler import TaskHandler
from app.cli.user_input import Field, Option, SimpleField
from app.cli.human_task_handler import TaskHandler

class CamundaTaskHandler(TaskHander):

Expand Down
1 change: 0 additions & 1 deletion spiff_example/curses_ui/__init__.py

This file was deleted.

4 changes: 2 additions & 2 deletions spiff_example/spiff/curses_handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

from jinja2 import Template

from ..curses_ui.user_input import SimpleField, Option, JsonField
from ..curses_ui.human_task_handler import TaskHandler
from app.cli.user_input import SimpleField, Option, JsonField
from app.cli.human_task_handler import TaskHandler

forms_dir = 'bpmn/tutorial/forms'

Expand Down