Skip to content

Commit

Permalink
Fix deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
MHHukiewitz committed Mar 29, 2024
1 parent 80a65db commit 8c648b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/aleph/sdk/chains/sol.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
raise DeprecationWarning(
"Module aleph.sdk.chains.sol is deprecated in favor of aleph.sdk.chains.solana"
)
from warnings import warn

warn("Module aleph.sdk.chains.sol is deprecated in favor of aleph.sdk.chains.solana", DeprecationWarning, stacklevel=2)
from aleph.sdk.chains.solana import *

0 comments on commit 8c648b8

Please sign in to comment.