summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny Al-Gaaf <danny.al-gaaf@bisect.de>2013-07-27 10:56:49 +0200
committerDanny Al-Gaaf <danny.al-gaaf@bisect.de>2013-07-27 11:37:34 +0200
commit246011807b5f00f5948b1444f00bf5f87f8e7e09 (patch)
tree5c0b8c9621bc815564e12d7835a854242c32c0fc
parent865d5e92553d607ae9ff2c8f8eee36bbb448d72a (diff)
downloadceph-246011807b5f00f5948b1444f00bf5f87f8e7e09.tar.gz
cephfs.py: remove unused imports
Removed ctypes, c_uint64, c_ubyte, pointer, CFUNCTYPE since they are not used in the code. Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
-rw-r--r--src/pybind/cephfs.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/pybind/cephfs.py b/src/pybind/cephfs.py
index f89f53fb194..80b7e4b773f 100644
--- a/src/pybind/cephfs.py
+++ b/src/pybind/cephfs.py
@@ -2,9 +2,7 @@
This module is a thin wrapper around libcephfs.
"""
from ctypes import CDLL, c_char_p, c_size_t, c_void_p, c_int, c_long, c_uint, c_ulong, \
- create_string_buffer, byref, Structure, c_uint64, c_ubyte, pointer, \
- CFUNCTYPE
-import ctypes
+ create_string_buffer, byref, Structure
import errno
class Error(Exception):