Skip to content

Commit 737cfb3

Browse files
committed
fix: Correct relative import for 'text_manipulation' in cedarscript_editor.py
1 parent f3e7320 commit 737cfb3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/cedarscript_editor/__init__.py

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

3-
__version__ = "0.2.2"
3+
__version__ = "0.2.3"
44

55
__all__ = ["CEDARScriptEditor"]
66

src/cedarscript_editor/cedarscript_editor.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
InsertClause, ReplaceClause, EditingAction, BodyOrWhole, RegionClause, MarkerType
88
from cedarscript_ast_parser.cedarscript_ast_parser import MarkerCompatible, RelativeMarker, \
99
RelativePositionType
10-
from text_manipulation.indentation_kit import IndentationInfo
11-
from text_manipulation.range_spec import IdentifierBoundaries, RangeSpec
12-
from text_manipulation.text_editor_kit import read_file, write_file, bow_to_search_range
10+
from ..text_manipulation.indentation_kit import IndentationInfo
11+
from ..text_manipulation.range_spec import IdentifierBoundaries, RangeSpec
12+
from ..text_manipulation.text_editor_kit import read_file, write_file, bow_to_search_range
1313

1414
from .identifier_selector import select_finder
1515

0 commit comments

Comments
 (0)