Skip to content

Commit b5809b3

Browse files
style(pre-commit): auto fixes from pre-commit.com hooks
1 parent 430b8ef commit b5809b3

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

discord/guild.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4089,7 +4089,9 @@ async def create_test_entitlement(self, sku: Snowflake) -> Entitlement:
40894089
"owner_id": self.id,
40904090
"owner_type": EntitlementOwnerType.guild.value,
40914091
}
4092-
data = await self._state.http.create_test_entitlement(self._state.application_id, payload)
4092+
data = await self._state.http.create_test_entitlement(
4093+
self._state.application_id, payload
4094+
)
40934095
return Entitlement(data=data, state=self._state)
40944096

40954097
def entitlements(

discord/user.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,9 @@ async def create_test_entitlement(self, sku: discord.abc.Snowflake) -> Entitleme
636636
"owner_id": self.id,
637637
"owner_type": 2,
638638
}
639-
data = await self._state.http.create_test_entitlement(self._state.application_id, payload)
639+
data = await self._state.http.create_test_entitlement(
640+
self._state.application_id, payload
641+
)
640642
return Entitlement(data=data, state=self._state)
641643

642644
def entitlements(

0 commit comments

Comments
 (0)