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 exception types for jsonschema._format #7990

Merged
merged 4 commits into from
May 30, 2022

Commits on May 30, 2022

  1. Fix exception types for jsonschema._format

    The annotated type for the `raises` argument on format checkers was
    
        Exception | tuple[Exception, ...]
    
    when it should read
    
        type[Exception] | tuple[type[Exception], ...]
    sirosen committed May 30, 2022
    Configuration menu
    Copy the full SHA
    5e2e24f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    79bad46 View commit details
    Browse the repository at this point in the history
  3. Update stubs/jsonschema/jsonschema/_format.pyi

    Co-authored-by: Sebastian Rittau <[email protected]>
    sirosen and srittau authored May 30, 2022
    Configuration menu
    Copy the full SHA
    e7f5828 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    49172f8 View commit details
    Browse the repository at this point in the history