1
0

Ruff
All checks were successful
Test Python / Test (push) Successful in 22s

This commit is contained in:
Jon Michael Aanes 2024-06-20 23:01:11 +02:00
parent 0cc223f0f4
commit a816adacbb
Signed by: Jmaa
SSH Key Fingerprint: SHA256:Ab0GfHGCblESJx7JRE4fj4bFy/KRpeLhi41y4pF3sNA
2 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
__version__ = '0.1.12'
__version__ = '0.1.12'

View File

@ -1,16 +1,16 @@
import requests
import pytest
import requests
from fin_depo import investbank_nordnet
from . import secrets
needs_secrets = pytest.mark.skipif(
not secrets.NORDNET_USERNAME,
reason='Secret NORDNET_USERNAME required',
)
@needs_secrets
def test_get_depo():
session = requests.Session()