Skip to content

Commit

Permalink
Merge branch 'hotfix/0.2.3' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
JeltevanBoheemen committed Jun 18, 2024
2 parents 871e188 + 8c80d20 commit 7c9371a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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.2.2',
version='0.2.3',
description='Linguistic functions for SASTA tool',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down
6 changes: 3 additions & 3 deletions src/sastadev/ASTApostfunctions.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,9 @@ def wordcountperutt(allresults):

def getignorewordcount(allresults, uttid):
result = 0
if samplesizeqid in allresults.coreresults:
if uttid in allresults.coreresults[samplesizeqid]:
result = allresults.coreresults[samplesizeqid][uttid]
if samplesizereskey in allresults.coreresults:
if uttid in allresults.coreresults[samplesizereskey]:
result = allresults.coreresults[samplesizereskey][uttid]
return result


Expand Down

0 comments on commit 7c9371a

Please sign in to comment.