obfuscatedgenerated / quizlet-api

Missing module/function docstring PY-D0003
Documentation
Minor
a year agoa year old
Docstring missing for cardset_full
65    """
66
67    @staticmethod
68    def cardset_full(id: int) -> str:69        if not isinstance(id, int):
70            raise TypeError("id must be an integer")
71
Docstring missing for cardset_page
18    """
19
20    @staticmethod
21    def cardset_page(22        id: int, per_page: int, page: int, paging_token: Union[str, None] = None
23    ) -> str:
24        if not isinstance(id, int):
Docstring missing for get_utc_time
179    def get_timestamp(self) -> int:
180        return self.timestamp
181
182    def get_utc_time(self) -> datetime:183        return datetime.utcfromtimestamp(self.timestamp)
184
185    def get_last_modified(self) -> int:
Docstring missing for get_timestamp
176    def get_creator_id(self) -> int:
177        return self.creatorId
178
179    def get_timestamp(self) -> int:180        return self.timestamp
181
182    def get_utc_time(self) -> datetime:
Docstring missing for get_creator_id
173    def get_rank(self) -> int:
174        return self.rank
175
176    def get_creator_id(self) -> int:177        return self.creatorId
178
179    def get_timestamp(self) -> int: