Skip to content
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
2 changes: 1 addition & 1 deletion src/crawlee/_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ class Request(BaseModel):
lambda instance: user_data_adapter.dump_python(
instance,
by_alias=True,
exclude_none=True,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@janbuchar do you remember if this had any specific reason?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, I don't. The new behavior seems more explicit and I can't think of a problem that I could cause, so let's do this

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, I don't. The new behavior seems more explicit and I can't think of a problem that I could cause, so let's do this

exclude_none=False,
exclude_unset=True,
exclude_defaults=True,
)
Expand Down
Loading