From 99fc9505107183faa59aad9e7753f293eba88836 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Thu, 8 Apr 2021 06:02:47 -0400 Subject: Use f-strings in more places that were missed. --- discord/integrations.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'discord/integrations.py') diff --git a/discord/integrations.py b/discord/integrations.py index 6784f3f9..34458adc 100644 --- a/discord/integrations.py +++ b/discord/integrations.py @@ -53,7 +53,7 @@ class IntegrationAccount: self.name = kwargs.pop('name') def __repr__(self): - return ''.format(self) + return f'' class Integration: """Represents a guild integration. @@ -101,7 +101,7 @@ class Integration: self._from_data(data) def __repr__(self): - return ''.format(self) + return f'' def _from_data(self, integ): self.id = _get_as_snowflake(integ, 'id') -- cgit v1.2.3