Skip to content

Commit

Permalink
fix: import error while building;
Browse files Browse the repository at this point in the history
  • Loading branch information
WenjieDu committed Mar 19, 2023
1 parent 3b193b8 commit c028b6d
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions pycorruptor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,14 @@
# Created by Wenjie Du <wenjay.du@gmail.com>
# License: GLP-v3

from .__version__ import version as __version__
from pycorruptor.__version__ import version as __version__

from .corrupt import (
cal_missing_rate,
masked_fill,
mcar,
)
try:
from pycorruptor.corrupt import (
cal_missing_rate,
masked_fill,
mcar,
)

except Exception as e:
print(e)

0 comments on commit c028b6d

Please sign in to comment.