Skip to content

Commit

Permalink
Fix flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
YuzuRyo61 committed Jun 29, 2024
1 parent 7fcd1b1 commit 5915d65
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion misskey/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def address(self) -> str:
@property
def token(self) -> Optional[str]:
return self._token

@token.setter
def token(self, value: str) -> None:
self._token = value
Expand Down
2 changes: 1 addition & 1 deletion misskey/sync_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def __init__(
self.session = requests.Session()
else:
self.session = session

def api_call(
self, *,
endpoint: str,
Expand Down

0 comments on commit 5915d65

Please sign in to comment.