fix indentation

This commit is contained in:
0kq 2023-08-17 11:32:38 +09:00 committed by GitHub
parent d5c70d1261
commit 8ff4a7fe60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -72,11 +72,9 @@ class Route:
self.username = username
if endpoint == 'enka':
self.url: str = Config.ENKA_PROTOCOL + "://" + Config.ENKA_URL
+ path
self.url: str = Config.ENKA_PROTOCOL + "://" + Config.ENKA_URL + path
else:
self.url: str = Config.ASSETS_PROTOCOL + "://" + Config.ASSETS_URL
+ path
self.url: str = Config.ASSETS_PROTOCOL + "://" + Config.ASSETS_URL + path
class HTTPClient: