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

Replace instances of to_json() method with json.encode(..) #1180

Merged
merged 1 commit into from
Mar 19, 2024

Commits on Mar 19, 2024

  1. Replace instances of to_json() method with json.encode(..)

    The to_json and to_proto methods on struct are deprecated and will be
    removed. The "json" and "proto" builtin modules should be used instead.
    
    This replaces instances of `foo.to_json()` with `json.encode(foo)`.
    c-mita committed Mar 19, 2024
    Configuration menu
    Copy the full SHA
    d0b1b5b View commit details
    Browse the repository at this point in the history