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

Commit

Permalink
Merge pull request #65 from withlogicco/dependabot/pip/mypy-1.0.0
Browse files Browse the repository at this point in the history
chore(deps-dev): bump mypy from 0.982 to 1.0.0
  • Loading branch information
parisk authored Feb 13, 2023
2 parents cec23cc + 8e45f33 commit 91b01d9
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 31 deletions.
8 changes: 4 additions & 4 deletions billit/client.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import dataclasses
from typing import List
from typing import List, Optional

import requests

Expand Down Expand Up @@ -359,8 +359,8 @@ def list(
per_page: int = 25,
with_relations: bool = True,
q: str = "",
tag_id: int = None,
unpaid: bool = None,
tag_id: Optional[int] = None,
unpaid: Optional[bool] = None,
):
params = {
"per_page": per_page,
Expand Down Expand Up @@ -399,7 +399,7 @@ def create(
addresses: List,
email: str = "",
tags: List[str] = [],
default_vat_id: int = None,
default_vat_id: Optional[int] = None,
):
data = {
self._args_api_mappings["is_company"]: is_company,
Expand Down
55 changes: 29 additions & 26 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ types-requests = "^2.28.0"

[tool.poetry.dev-dependencies]
black = "^23.1.0"
mypy = "^0.982"
mypy = "^1.0"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down

0 comments on commit 91b01d9

Please sign in to comment.