apple / app-store-server-library-python

MIT License
147 stars 31 forks source link

`SignedDataVerifier` `app_apple_id` type disallows `None` #71

Closed CallumAtCarter closed 4 months ago

CallumAtCarter commented 5 months ago

The argument is typed as:

app_apple_id: int = None

But should be:

app_apple_id: int | None = None

To allow for passing None in sandbox.