Skip to content

Commit

Permalink
Merge pull request #128 from jstoja/remove_unused_imports
Browse files Browse the repository at this point in the history
Remove unused imports
  • Loading branch information
Deconstrained authored Nov 27, 2023
2 parents bacfe4a + e7b1d5d commit 5e37067
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 0 additions & 2 deletions pdpyras.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,11 @@
import time
from copy import deepcopy
from datetime import datetime
from logging import StreamHandler
from random import random
from warnings import warn

# Libraries from PyPI
import requests
from deprecation import deprecated, DeprecatedWarning
from urllib3.exceptions import HTTPError, PoolError
from requests.exceptions import RequestException

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup, find_packages
from setuptools import setup

__version__ = '5.1.3'

Expand All @@ -12,7 +12,7 @@
license='MIT',
url='https://pagerduty.github.io/pdpyras',
download_url='https://pypi.org/project/pdpyras/',
install_requires=['requests', 'urllib3', 'deprecation'],
install_requires=['requests', 'urllib3'],
author='PagerDuty',
author_email='[email protected]',
python_requires='>=3.6'
Expand Down
1 change: 0 additions & 1 deletion test_pdpyras.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
import datetime
import json
import logging
import os
import requests
import sys
import unittest
Expand Down

0 comments on commit 5e37067

Please sign in to comment.