Fix error in .get definition.

This commit is contained in:
Cassowary Rusnov 2021-11-22 11:02:30 -08:00
parent b0e8bb1307
commit 43a8b2fb45
3 changed files with 3 additions and 3 deletions

View File

@ -2,4 +2,4 @@
__author__ = """Cassowary Rusnov""" __author__ = """Cassowary Rusnov"""
__email__ = "rusnovc@gmail.com" __email__ = "rusnovc@gmail.com"
__version__ = "0.0.1" __version__ = "0.0.2"

View File

@ -191,7 +191,7 @@ class APIv4:
objName: str, objName: str,
where: Optional[List] = None, where: Optional[List] = None,
limit: Optional[int] = None, limit: Optional[int] = None,
select=Optional[List[str]]) -> List: select: Optional[List[str]] = None) -> List:
""" """
Get objects based on a where clause, optional limit and optional field list. Get objects based on a where clause, optional limit and optional field list.

View File

@ -1,6 +1,6 @@
[metadata] [metadata]
name = civicrmapi4 name = civicrmapi4
version = 0.0.1 version = 0.0.2
description = A simple layer to interact with the CiviCRM APIv4 description = A simple layer to interact with the CiviCRM APIv4
author = Cassowary Rusnov author = Cassowary Rusnov
author_email = rusnovc@gmail.com author_email = rusnovc@gmail.com