mirror of
https://github.com/bellingcat/snscrape.git
synced 2026-06-12 04:18:29 +03:00
Fix type of User.id
This commit is contained in:
@@ -113,7 +113,7 @@ class User(snscrape.base.Entity):
|
|||||||
|
|
||||||
username: str
|
username: str
|
||||||
displayname: str
|
displayname: str
|
||||||
id: str # Seems to always be numeric, but the API returns it as a string, so it might also contain other things in the future
|
id: int
|
||||||
description: typing.Optional[str] = None # Description as it's displayed on the web interface with URLs replaced
|
description: typing.Optional[str] = None # Description as it's displayed on the web interface with URLs replaced
|
||||||
rawDescription: typing.Optional[str] = None # Raw description with the URL(s) intact
|
rawDescription: typing.Optional[str] = None # Raw description with the URL(s) intact
|
||||||
descriptionUrls: typing.Optional[typing.List[DescriptionURL]] = None
|
descriptionUrls: typing.Optional[typing.List[DescriptionURL]] = None
|
||||||
|
|||||||
Reference in New Issue
Block a user