Skip to content

Commit fe8093e

Browse files
authored
fixed bug and bumped version (#250)
1 parent b0de3f7 commit fe8093e

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "Apache-2.0"
99
name = "elimity-insights-client"
1010
readme = "README.md"
1111
repository = "https://github.com/elimity-com/insights-client-python"
12-
version = "10.2.1b0"
12+
version = "10.2.1b1"
1313

1414
[tool.poetry.dependencies]
1515
python = "^3.7"

src/elimity_insights_client/api/entities/_entities.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ def entities(
2626
schemas = {
2727
source.id: source.domain_graph_schema
2828
for source in sos
29-
if linked_source_ids is None or source.id in linked_source_ids
29+
if source.id == entity_type.source_id
30+
or linked_source_ids is None
31+
or source.id in linked_source_ids
3032
}
3133
que = query(entity_type, schemas)
3234
queries = [que]

0 commit comments

Comments
 (0)