Skip to content

Commit

Permalink
Merge pull request #29 from semiotic-ai/update_deps
Browse files Browse the repository at this point in the history
fix: update dependencies
  • Loading branch information
aasseman authored Oct 11, 2023
2 parents e8f8663 + 2fa3859 commit 69c395a
Show file tree
Hide file tree
Showing 2 changed files with 424 additions and 348 deletions.
6 changes: 5 additions & 1 deletion autoagora_processor/subgraph_schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,11 @@ def get_schema_from_graph_node(subgraph_ipfs_hash: str) -> Optional[GraphQLSchem
fetch_schema_from_transport=False,
)
try:
result = IntrospectionQuery(client.execute(gql(introspection_query)))
result = IntrospectionQuery(
client.execute(
gql(introspection_query)
) # pyright: ignore [reportGeneralTypeIssues]
)
except TransportQueryError as e:
# Should happen when there is an indexing error
logging.warn(
Expand Down
Loading

0 comments on commit 69c395a

Please sign in to comment.