Skip to content
This repository has been archived by the owner on Sep 25, 2024. It is now read-only.

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
SecondThundeR committed May 14, 2022
2 parents 156f617 + 97b8444 commit e87f6df
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "shikithon"
version = "0.1.0"
version = "0.1.1"
description = "Yet another Python wrapper for Shikimori API"
authors = [
"SecondThundeR <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion shikithon/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Contains package version and some magic for importing API object."""
from shikithon.api import API

__version__ = '0.1.0'
__version__ = '0.1.1'
__all__ = ['API']
2 changes: 1 addition & 1 deletion shikithon/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ def _request(
"""
response: Union[Response, None] = None

logger.info(f'Making {request_type.value} request to {url}')
logger.info(f'{request_type.value} {url}')
logger.debug(f'Request info details: {data=}, {headers=}, {query=}')

if request_type == RequestType.GET:
Expand Down
2 changes: 1 addition & 1 deletion shikithon/models/anime.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Anime(BaseModel):
russian: str
image: Image
url: str
kind: str
kind: Optional[str]
score: float
status: str
episodes: int
Expand Down

0 comments on commit e87f6df

Please sign in to comment.