Skip to content

Commit dcf769f

Browse files
committed
fix formating
1 parent aab3567 commit dcf769f

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

databunkerpro/api.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
Main implementation of the DatabunkerPro API client.
44
"""
55

6-
from typing import Dict, Any, Optional, List, Union
7-
import requests
86
import json
97
from datetime import datetime
8+
from typing import Any, Dict, List, Optional, Union
9+
10+
import requests
1011

1112

1213
class DatabunkerproAPI:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from setuptools import setup, find_packages
1+
from setuptools import find_packages, setup
22

33
with open("README.md", "r", encoding="utf-8") as fh:
44
long_description = fh.read()

tests/test_api.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22
Tests for the DatabunkerPro API client.
33
"""
44

5-
import unittest
65
import os
76
import random
7+
import unittest
8+
89
import requests
10+
911
from databunkerpro import DatabunkerproAPI
1012

1113

0 commit comments

Comments
 (0)