Skip to content

Commit 72ceb80

Browse files
committed
Update terminal_verb.py
1 parent 3340710 commit 72ceb80

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bandwidth/model/bxml/terminal_verb.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,16 @@
55
66
@copyright Bandwidth INC
77
"""
8+
from typing import List
9+
810
from .verb import Verb
911

1012

1113
class TerminalVerb(Verb):
1214
"""Base class for BXML verbs
1315
"""
1416

15-
def __init__(self, tag: str, content: str = None, attributes: dict = None, nested_verbs: list[Verb] = None):
17+
def __init__(self, tag: str, content: str = None, attributes: dict = None, nested_verbs: List[Verb] = None):
1618
"""Initialize the verb model
1719
1820
Args:

0 commit comments

Comments
 (0)