forked from cas/civicrmapi4
Fix error in .get definition.
This commit is contained in:
parent
b0e8bb1307
commit
43a8b2fb45
@ -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"
|
||||||
|
@ -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.
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user