🐛 Fix assets target var

This commit is contained in:
xtaodada 2024-06-05 19:23:18 +08:00
parent 6cc3be89b5
commit ae0a63e7b9
Signed by: xtaodada
GPG Key ID: 4CBB3F4FA8C85659

View File

@ -36,7 +36,7 @@ class AssetsCouldNotFound(AssetsServiceError):
def __init__(self, message: str, target: str):
self.message = message
self.target = target
super().__init__(f"{message}: target={message}")
super().__init__(f"{message}: target={target}")
class _AssetsService: