Skip to content

Commit

Permalink
Fix mypy issues
Browse files Browse the repository at this point in the history
  • Loading branch information
davfsa committed Jan 30, 2024
1 parent fbb2e94 commit b55e851
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hikari/impl/rest.py
Original file line number Diff line number Diff line change
Expand Up @@ -4453,8 +4453,8 @@ async def create_test_entitlement(
owner_type: typing.Union[int, monetization.EntitlementOwnerType],
) -> monetization.Entitlement:
body = data_binding.JSONObjectBuilder()
body.put("sku_id", sku)
body.put("owner_id", owner_id)
body.put_snowflake("sku_id", sku)
body.put_snowflake("owner_id", owner_id)
body.put("owner_type", owner_type)

route = routes.POST_APPLICATION_TEST_ENTITLEMENT.compile(application=application)
Expand Down

0 comments on commit b55e851

Please sign in to comment.