Skip to content

Commit

Permalink
Doc/query type (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
margalva authored Jul 19, 2023
1 parent 46a8dc6 commit 0672394
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ansys/dynamicreporting/core/adr_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ def query(self, query_type: str = "Item", filter: Optional[str] = "") -> list:
import ansys.dynamicreporting.core as adr
adr_service = adr.Service(ansys_installation = r'C:\\Program Files\\ANSYS Inc\\v232')
ret = adr_service.connect()
imgs = adr_service.query(type='Item', filter='A|i_type|cont|image;')
imgs = adr_service.query(query_type='Item', filter='A|i_type|cont|image;')
"""
queried_items = []
valid = self.__check_filter__(filter)
Expand Down

0 comments on commit 0672394

Please sign in to comment.