From f9bccabac5e205bccff3035a9bb7c5a31baf9acb Mon Sep 17 00:00:00 2001 From: Rapptz Date: Mon, 28 Jun 2021 21:55:41 -0400 Subject: [PATCH] Make Asset.with_ functions positional only --- discord/asset.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/discord/asset.py b/discord/asset.py index 11780145c..e83811897 100644 --- a/discord/asset.py +++ b/discord/asset.py @@ -311,7 +311,7 @@ class Asset(AssetMixin): url = str(url) return Asset(state=self._state, url=url, key=self._key, animated=self._animated) - def with_size(self, size: int) -> Asset: + def with_size(self, size: int, /) -> Asset: """Returns a new asset with the specified size. Parameters @@ -335,7 +335,7 @@ class Asset(AssetMixin): url = str(yarl.URL(self._url).with_query(size=size)) return Asset(state=self._state, url=url, key=self._key, animated=self._animated) - def with_format(self, format: ValidAssetFormatTypes) -> Asset: + def with_format(self, format: ValidAssetFormatTypes, /) -> Asset: """Returns a new asset with the specified format. Parameters @@ -366,7 +366,7 @@ class Asset(AssetMixin): url = str(url.with_path(f'{path}.{format}').with_query(url.raw_query_string)) return Asset(state=self._state, url=url, key=self._key, animated=self._animated) - def with_static_format(self, format: ValidStaticFormatTypes) -> Asset: + def with_static_format(self, format: ValidStaticFormatTypes, /) -> Asset: """Returns a new asset with the specified static format. This only changes the format if the underlying asset is