Skip to content
This repository was archived by the owner on Jan 16, 2022. It is now read-only.

Commit e4738cd

Browse files
committed
Black formatting and isort
1 parent 56af098 commit e4738cd

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

setup.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22

33
import setuptools
44

5-
from nepse import *
5+
from nepse import (
6+
__author__,
7+
__author_email__,
8+
__package_description__,
9+
__package_name__,
10+
__version__,
11+
)
612

713
# The directory containing this file
814
HERE = pathlib.Path(__file__).parent

tests/basic_test.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
import asyncio
22
from dataclasses import asdict
3-
from nepse.security.types import SecurityResponse
3+
44
import httpx
5-
import pytest
65
import humps
6+
import pytest
77

88
from nepse import Client
9+
from nepse.security.types import SecurityResponse
910
from nepse.utils import ClientWrapperHTTPX
1011

1112

0 commit comments

Comments
 (0)