From f8d89205ab1a568e684e4feed464b35d4e7c5711 Mon Sep 17 00:00:00 2001 From: Anthony Mahanna Date: Thu, 9 May 2024 22:39:26 -0400 Subject: [PATCH] fix lint --- python/phenolrs/numpy_loader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/phenolrs/numpy_loader.py b/python/phenolrs/numpy_loader.py index a51f841..0e089ff 100644 --- a/python/phenolrs/numpy_loader.py +++ b/python/phenolrs/numpy_loader.py @@ -50,7 +50,7 @@ def load_graph_to_numpy( # "USER": {"x": {"features": None}} # Should be converted to: # "USER": {"x": "features"} - entries: dict + entries: dict[str, typing.Any] for v_col_name, entries in metagraph["vertexCollections"].items(): for source_name, value in entries.items(): if isinstance(value, dict):