From: Danny Al-Gaaf Date: Sat, 27 Jul 2013 08:56:49 +0000 (+0200) Subject: cephfs.py: remove unused imports X-Git-Tag: v0.67-rc3~21^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=246011807b5f00f5948b1444f00bf5f87f8e7e09;p=ceph.git 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 --- diff --git a/src/pybind/cephfs.py b/src/pybind/cephfs.py index f89f53fb194f..80b7e4b773ff 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):