Skip to content

Commit

Permalink
add __init__.py
Browse files Browse the repository at this point in the history
this fixes relative import issues
  • Loading branch information
amilz committed Dec 9, 2024
1 parent 8791580 commit c6b2bda
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions solana/yellowstone/python/pumpfun/generated/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import sys
from pathlib import Path

current_dir = str(Path(__file__).parent)
if current_dir not in sys.path:
sys.path.append(current_dir)

from . import geyser_pb2
from . import geyser_pb2_grpc
from . import solana_storage_pb2
from . import solana_storage_pb2_grpc

0 comments on commit c6b2bda

Please sign in to comment.