Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/input_adapters/panther/panther_classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,8 @@ def _load_family_nodes(self) -> dict:

top_level_id = family_id.split(":", 1)[0]
if top_level_id not in nodes:
from inspect import signature
print("PantherFamily signature in adapter:", signature(PantherFamily))
nodes[top_level_id] = PantherFamily(
id=_panther_family_node_id(top_level_id),
source_id=top_level_id,
Expand Down
1 change: 1 addition & 0 deletions src/input_adapters/pharos_arango/set_preferred_symbol.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@


class SetPreferredSymbolAdapter(InputAdapter, ArangoAdapter):
batch_size: int = 1000

def get_datasource_name(self) -> DataSourceName:
return DataSourceName.PostProcessing
Expand Down
Loading