Skip to content

Commit

Permalink
Merge branch 'release/0.1.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
JeltevanBoheemen committed Nov 8, 2023
2 parents 362156c + a9cc9ae commit 8b02f5f
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.1',
version='0.1.2',
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/readmethod.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def read_method(methodname: str, methodfilename: FileName) -> Method:
altitems: List[str] = getaltitems(row[altcol])
implies: List[str] = getimplies(row[impliescol])
original: bool = getboolean(row[originalcol])
pages: str = get_pages(row[pagescol])
pages: str = str(get_pages(row[pagescol]))
fase: int = getint(row[fasecol])
query: str = row[querycol]
inform: str = row[informcol]
Expand Down

0 comments on commit 8b02f5f

Please sign in to comment.