Skip to content

Commit

Permalink
Merge pull request #6 from imubit/fix-block-size-type
Browse files Browse the repository at this point in the history
fix block size type error
  • Loading branch information
cloud-rocket authored Nov 14, 2023
2 parents 85ea2e5 + 3c0930b commit a1e1917
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/data_agent_osisoft_pi/connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def __init__(self, conn_name="pi_client", server_name="default", **kwargs):
self._server = None
self._server_name = server_name
self._page_size = (
kwargs["page_size"] if "page_size" in kwargs else DEFAULT_PAGE_SIZE
int(kwargs["page_size"]) if "page_size" in kwargs else DEFAULT_PAGE_SIZE
)

@staticmethod
Expand Down

0 comments on commit a1e1917

Please sign in to comment.