Skip to content

Commit

Permalink
test: Add futurize components for python2 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
ar13pit committed Mar 7, 2020
1 parent e3e237d commit 1c3bff2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion test/test_audio.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import pyaudio
from __future__ import (print_function, division, absolute_import, unicode_literals)
from builtins import *
import wave
import pyaudio

FORMAT = pyaudio.paInt16
CHANNELS = 1
Expand Down
3 changes: 2 additions & 1 deletion test/test_live.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import queue
from __future__ import (print_function, division, absolute_import, unicode_literals)
from builtins import *
import time
import struct
import logging
Expand Down

0 comments on commit 1c3bff2

Please sign in to comment.