Hi,
very cool package! I'm trying to integrate it with pyinspect to complement pyinspect's fancy tracebacks with your helpful messages, but I can't get didyoumean to work.
I've tried both with pip install BetterErrorMessages and by installing from the master branch on github, but it's the same.
I think that's in an issue about how modules are imported within the package, e.g.
from didyoumean.didyoumean_internal import add_suggestions_to_exception
results in:
ModuleNotFoundError: No module named 'didyoumean_re'
and
import didyoumean
didyoumean.didyoumean_api.didyoumean_postmortem()
results in:
AttributeError: module 'didyoumean' has no attribute 'didyoumean_api'
and so on..
Hi,
very cool package! I'm trying to integrate it with pyinspect to complement
pyinspect's fancy tracebacks with your helpful messages, but I can't getdidyoumeanto work.I've tried both with
pip install BetterErrorMessagesand by installing from the master branch on github, but it's the same.I think that's in an issue about how modules are imported within the package, e.g.
results in:
and
results in:
and so on..