summaryrefslogtreecommitdiff
path: root/statsd/client/udp.py
diff options
context:
space:
mode:
authorJames Socol <me@jamessocol.com>2022-11-05 17:49:04 -0400
committerJames Socol <me@jamessocol.com>2022-11-05 17:49:04 -0400
commitb279154919fc5e09f52cc38c582eda5163822d4d (patch)
tree39ac8b5e2847104824193be38b26d00b320eb961 /statsd/client/udp.py
parenta9406c1a5a6432249c512b61eb6f710291c6101b (diff)
downloadpystatsd-b279154919fc5e09f52cc38c582eda5163822d4d.tar.gz
Remove __future__ imports
All of the features from __future__ that were in this library have been in Python since 3.0. Now that Python 2 is no longer supported, we no longer need them.
Diffstat (limited to 'statsd/client/udp.py')
-rw-r--r--statsd/client/udp.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/statsd/client/udp.py b/statsd/client/udp.py
index ddb9d22..4e44d5c 100644
--- a/statsd/client/udp.py
+++ b/statsd/client/udp.py
@@ -1,5 +1,3 @@
-from __future__ import absolute_import, division, unicode_literals
-
import socket
from .base import StatsClientBase, PipelineBase