8000 Update location of imports · yikaraman/twilio-python@32444e8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 32444e8

Browse files
committed
Update location of imports
1 parent 1e7ec9c commit 32444e8

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

twilio/task_router/__init__.py

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
import time
22
from .. import jwt
33

4+
from .taskrouter_config import (
5+
TaskRouterConfig
6+
)
7+
8+
from .workflow_config import (
9+
WorkflowConfig
10+
)
11+
12+
from .workflow_ruletarget import (
13+
WorkflowRuleTarget
14+
)
15+
from .workflow_rule import (
16+
WorkflowRule
17+
)
18+
419
import warnings
520
warnings.simplefilter('always', DeprecationWarning)
621

@@ -257,18 +272,3 @@ def __init__(self, account_sid, auth_token, workspace_sid):
257272

258273
def setup_resource(self):
259274
self.resource_url = self.base_url
260-
261-
from .taskrouter_config import (
262-
TaskRouterConfig
263-
)
264-
265-
from .workflow_config import (
266-
WorkflowConfig
267-
)
268-
269-
from .workflow_ruletarget import (
270-
WorkflowRuleTarget
271-
)
272-
from .workflow_rule import (
273-
WorkflowRule
274-
)

0 commit comments

Comments
 (0)
0