Skip to content

Commit

Permalink
update requirements: define versions; update import order in main
Browse files Browse the repository at this point in the history
  • Loading branch information
ruthenian8 committed Feb 22, 2023
1 parent 221aab8 commit 5441b7e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions common/dff_api_v1/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# base
six
six==1.16.0
sentry_sdk[flask]==0.14.3
flask==1.1.1
itsdangerous==2.0.1
gunicorn==19.9.0
healthcheck==1.3.3
git+https://github.com/deeppavlov/dialog_flow_framework@dev
dff==0.3.2
# test
requests==2.22.0
jinja2<=3.0.3
Expand Down
7 changes: 4 additions & 3 deletions skills/dff_template_skill/scenario/main.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
import logging
import re


import dff.script.conditions as cnd
import dff.script.labels as lbl
from dff.script import (
MultiMessage,
LOCAL,
PRE_TRANSITIONS_PROCESSING,
PRE_RESPONSE_PROCESSING,
TRANSITIONS,
RESPONSE,
GLOBAL,
)
import dff.script.conditions as cnd
import dff.script.labels as lbl
from dff.script import MultiMessage
from dff.pipeline import Pipeline

import common.dff_api_v1.integration.condition as int_cnd
Expand Down

0 comments on commit 5441b7e

Please sign in to comment.