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

[SNOW-1569937] App Versioning #1332

Closed
wants to merge 17 commits into from
Closed
Changes from 1 commit
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
Prev Previous commit
Next Next commit
default None for popping app_id
  • Loading branch information
sfc-gh-chu committed Aug 13, 2024
commit 9a78dc9a652f6cfb0fa97aa5e94642638851dc01
2 changes: 1 addition & 1 deletion src/core/trulens/core/schema/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def __init__(
f.feedback_definition_id for f in kwargs.get("feedbacks", [])
]

if app_id := kwargs.pop("app_id"):
if app_id := kwargs.pop("app_id", None):
if app_version:
raise ValueError(
"Cannot provide both `app_id` and `app_version`."
Expand Down