Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin Su <pingsutw@apache.org>
  • Loading branch information
pingsutw committed Oct 10, 2023
1 parent 015a0ac commit 68c032c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flytekit/lazy_import/lazy_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def __init__(self, module_name: str):
self._module_name = module_name

def __getattribute__(self, attr):
raise ImportError(f"Module is not yet installed.")
raise ImportError(f"Module {object.__getattribute__(self, '_module_name')} is not yet installed.")


def is_imported(module_name):
Expand Down

0 comments on commit 68c032c

Please sign in to comment.