Merge pull request #49 from 0kq-github/develop

fix indentation
This commit is contained in:
M-307 2023-08-17 13:02:54 +07:00 committed by GitHub
commit 728f5ca422
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: