Skip to content

Commit

Permalink
fix some return type warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ljeub-pometry committed Dec 18, 2024
1 parent c2e5088 commit ebd3899
Show file tree
Hide file tree
Showing 9 changed files with 333 additions and 696 deletions.
14 changes: 7 additions & 7 deletions python/python/raphtory/__init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import sys
import sys as _sys
from .raphtory import *

sys.modules["raphtory.node_state"] = node_state
sys.modules["raphtory.algorithms"] = algorithms
sys.modules["raphtory.graph_gen"] = graph_gen
sys.modules["raphtory.graph_loader"] = graph_loader
sys.modules["raphtory.vectors"] = vectors
sys.modules["raphtory.graphql"] = graphql
_sys.modules["raphtory.node_state"] = node_state
_sys.modules["raphtory.algorithms"] = algorithms
_sys.modules["raphtory.graph_gen"] = graph_gen
_sys.modules["raphtory.graph_loader"] = graph_loader
_sys.modules["raphtory.vectors"] = vectors
_sys.modules["raphtory.graphql"] = graphql

__doc__ = raphtory.__doc__
if hasattr(raphtory, "__all__"):
Expand Down
Loading

0 comments on commit ebd3899

Please sign in to comment.