aboutsummaryrefslogtreecommitdiff
path: root/discord
diff options
context:
space:
mode:
Diffstat (limited to 'discord')
-rw-r--r--discord/asset.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/discord/asset.py b/discord/asset.py
index 11780145..e8381189 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