Skip to content

Commit

Permalink
Removed import statement that caused CI to break.
Browse files Browse the repository at this point in the history
  • Loading branch information
speratus committed Nov 11, 2019
1 parent 8e1da3a commit 2b55755
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions blinkter/threads.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@
# SOFTWARE.

from copy import deepcopy
from blinkter.pixel import Pixel
# from blinkter.pixel import Pixel

import threading
import time
#import blinkter.pixel

##from .pixel import Pixel

Expand All @@ -44,7 +45,7 @@ def run(self):

class BlinkThread(threading.Thread):

def __init__(self, pixel: Pixel, interval: float, duration: float):
def __init__(self, pixel, interval: float, duration: float):
super().__init__()
self.pixel = pixel
self.interval = interval
Expand Down

0 comments on commit 2b55755

Please sign in to comment.