]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
cephfs.py: remove unused imports
authorDanny Al-Gaaf <danny.al-gaaf@bisect.de>
Sat, 27 Jul 2013 08:56:49 +0000 (10:56 +0200)
committerDanny Al-Gaaf <danny.al-gaaf@bisect.de>
Sat, 27 Jul 2013 09:37:34 +0000 (11:37 +0200)
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>
src/pybind/cephfs.py

index f89f53fb194fc5dbb04d7dedbf5996d63aa0dce3..80b7e4b773ff4dbddf92d80d42d0ceb36dae329f 100644 (file)
@@ -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):