Skip to content

Commit

Permalink
Make isort happy as well.
Browse files Browse the repository at this point in the history
  • Loading branch information
Cheaterman committed Aug 18, 2020
1 parent 0b7d7df commit 5669e5a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/kivy_garden/zbarcam/zbarcam.py
@@ -1,7 +1,7 @@
import collections
import os
import threading
import queue
from collections import namedtuple
import threading

import PIL
from kivy.clock import Clock
Expand All @@ -23,7 +23,7 @@ class ZBarCam(AnchorLayout):
resolution = ListProperty([640, 480])

symbols = ListProperty([])
Symbol = namedtuple('Symbol', ['type', 'data'])
Symbol = collections.namedtuple('Symbol', ['type', 'data'])
# checking all possible types by default
code_types = ListProperty(set(pyzbar.ZBarSymbol))

Expand Down
1 change: 1 addition & 0 deletions tests/kivy_garden/zbarcam/test_zbarcam.py
Expand Up @@ -4,6 +4,7 @@

from kivy.base import EventLoop
from kivy.core.image import Image

from kivy_garden.zbarcam import ZBarCam

FIXTURE_DIR = os.path.join(
Expand Down

0 comments on commit 5669e5a

Please sign in to comment.