Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
liao961120 committed Dec 2, 2024
1 parent 1dd4db1 commit 8f73ef8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion concordancer/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def allValues_match_token(values:list, tag:Union[str, int] , target: dict) -> bo


def append_regex_anchors(x: str):
x = "(" + x + ")"
# x = "(" + x + ")"
if not x.startswith('^'):
x = '^' + x
if not x.endswith('$'):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
long_description = f.read().strip()

setup(name='concordancer',
version='0.1.15',
version='0.1.16',
description='Extract concordance lines from corpus with CQL',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 8f73ef8

Please sign in to comment.