Skip to content

Commit a6138fc

Browse files
committed
x
1 parent 75326fc commit a6138fc

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

library/BracketMatcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import bisect
33
import token
44

5-
from astmonkey import transformers
5+
from PythonVoiceCodingPlugin.third_party.astmonkey import transformers
66
from PythonVoiceCodingPlugin.third_party.asttokens import asttokens as asttokens
77

88
from PythonVoiceCodingPlugin.library import build_tree,get_source_region,nearest_node_from_offset,previous_token,next_token

library/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import ast
22
from itertools import chain
33

4-
from astmonkey import transformers
4+
from PythonVoiceCodingPlugin.third_party.astmonkey import transformers
55
from PythonVoiceCodingPlugin.third_party.asttokens import asttokens as asttokens
66

77
def make_flat(x):

library/lexical.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import ast
22
import token
33

4-
from astmonkey import transformers
4+
from PythonVoiceCodingPlugin.third_party.astmonkey import transformers
55
from PythonVoiceCodingPlugin.third_party.asttokens import asttokens as asttokens
66

77
from PythonVoiceCodingPlugin.library import build_tree,get_source_region,nearest_node_from_offset,previous_token,next_token

library/traverse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import ast
22

3-
from astmonkey import transformers
3+
from PythonVoiceCodingPlugin.third_party.astmonkey import transformers
44
from PythonVoiceCodingPlugin.third_party.asttokens import asttokens as asttokens
55

66
from PythonVoiceCodingPlugin.library import build_tree,get_source_region,nearest_node_from_offset,make_flat

0 commit comments

Comments
 (0)