Skip to content

Commit

Permalink
Merge branch 'hotfix/0.1.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
JeltevanBoheemen committed Apr 24, 2024
2 parents 80b4bb3 + 1f2a41b commit 2d57ee9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='sastadev',
version='0.1.4',
version='0.1.5',
description='Linguistic functions for SASTA tool',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down
2 changes: 1 addition & 1 deletion src/sastadev/xenx.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@ def xenx(tree: SynTree) -> List[SynTree]:
include = include and (childptcat == firstptcat) and childptcat not in clausecats
#print('include=', include)
#print('final: include=', include)
if include:
if include and crdresult is not None:
results.append(crdresult)
return results

0 comments on commit 2d57ee9

Please sign in to comment.