From db8e45547ca67bd6dff8d7e2bed3865995ca41a6 Mon Sep 17 00:00:00 2001 From: Theelgirl <43764914+Theelgirl@users.noreply.github.com> Date: Sat, 17 Oct 2020 14:51:52 +0000 Subject: [PATCH] Remove unneeded imports --- fvid/fvid_cython.pyx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/fvid/fvid_cython.pyx b/fvid/fvid_cython.pyx index 18ab9d1..a159843 100644 --- a/fvid/fvid_cython.pyx +++ b/fvid/fvid_cython.pyx @@ -2,10 +2,8 @@ # cython: boundscheck=False # cython: cdivision=True # cython: wraparound=False -from operator import sub -from tqdm import tqdm -cpdef cy_get_bits_from_image(image): +cpdef str cy_get_bits_from_image(image): cdef int width, height, x, y cdef str pixel_bin_rep cdef tuple white_diff, black_diff, pixel