Skip to content

Commit d42a008

Browse files
committed
track a mathics-scanner API change.
aliased_characters -> ALIASED_CHARACTERS
1 parent 769054d commit d42a008

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

mathicsscript/completion.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,9 @@ def __init__(self, definitions):
108108

109109
# @ is not really an operator
110110
self.ascii_operators = frozenset(_data["ascii-operators"])
111-
from mathics_scanner.characters import aliased_characters
111+
from mathics_scanner.characters import ALIASED_CHARACTERS
112112

113-
self.escape_sequences = aliased_characters.keys()
113+
self.escape_sequences = ALIASED_CHARACTERS.keys()
114114

115115
def _is_space_before_cursor(self, text_before_cursor: str) -> bool:
116116
"""Space before or no text before cursor."""

0 commit comments

Comments
 (0)