replace 2-element f-strings with simple '+' concatenations
Python's 'ast' module and its 'NodeVisitor' class were incredibly helpful in identifying these
This commit is contained in:
@@ -158,7 +158,7 @@ class VscoGalleryExtractor(VscoExtractor):
|
||||
tkn = data["users"]["currentUser"]["tkn"]
|
||||
sid = str(data["sites"]["siteByUsername"][self.user]["site"]["id"])
|
||||
|
||||
url = f"{self.root}/api/3.0/medias/profile"
|
||||
url = self.root + "/api/3.0/medias/profile"
|
||||
params = {
|
||||
"site_id" : sid,
|
||||
"limit" : "14",
|
||||
|
||||
Reference in New Issue
Block a user