summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--setup.py2
-rw-r--r--statsd/client.py2
2 files changed, 1 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index 2393e4c..cb27dd4 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,3 @@
-import os
-import re
from setuptools import find_packages, setup
diff --git a/statsd/client.py b/statsd/client.py
index f59ae62..16e1cbd 100644
--- a/statsd/client.py
+++ b/statsd/client.py
@@ -4,7 +4,7 @@ import functools
import random
import socket
-# Use timer that's not susceptable to time of day adjustments.
+# Use timer that's not susceptible to time of day adjustments.
try:
# perf_counter is only present on Py3.3+
from time import perf_counter as time_now