Skip to content

Commit bb5b2b2

Browse files
committed
Fix cov, enable python 3.13
1 parent f320328 commit bb5b2b2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.circleci/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ workflows:
132132
v:
133133
- "3.11"
134134
- "3.12"
135+
- "3.13"
135136

136137
- bitcart/functional-tests:
137138
name: functional-tests

bitcart/coins/btc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ async def _add_request_base(
157157
expire: int | float = 15,
158158
extra_kwargs: dict | None = None,
159159
) -> dict:
160-
if extra_kwargs is None:
160+
if extra_kwargs is None: # pragma: no cover
161161
extra_kwargs = {}
162162
expiration = 60 * expire if expire else None
163163
kwargs = {"amount": amount, "memo": description, self.EXPIRATION_KEY: expiration}

0 commit comments

Comments
 (0)