Skip to content

Commit

Permalink
Always cast query.pages to string
Browse files Browse the repository at this point in the history
  • Loading branch information
JeltevanBoheemen committed Nov 1, 2023
1 parent 362156c commit 6fc1ebe
Showing 1 changed file with 1 addition and 1 deletion.
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 6fc1ebe

Please sign in to comment.