Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix heuristics in get_app_caller_source_code_location #862

Merged
merged 1 commit into from
Aug 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion mesop/utils/caller.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,14 @@ def get_app_caller_source_code_location() -> pb.SourceCodeLocation | None:
caller_info = inspect.getframeinfo(current_frame)
filename = caller_info.filename
# "mesop/mesop" is the file path of the core Mesop framework when running under bazel.
# The exception is the examples subdir, which are Mesop apps and not actually part of
# the core Mesop framework.
#
# "site-packages" is the file path of the Mesop framework when running under pip CLI.
# If the file is neither of those paths, then we assume it is an app file.
if "mesop/mesop" not in filename and "site-packages" not in filename:
if (
"mesop/mesop" not in filename or "mesop/mesop/examples" in filename
) and "site-packages" not in filename:
# Get module from filepath
splitted_file = filename.split("runfiles/")
if len(splitted_file) < 2:
Expand Down
Loading