Ver código fonte

fixed type missmatch

pull/52/head
Tobias Perschon 5 anos atrás
pai
commit
524b783001
2 arquivos alterados com 2 adições e 2 exclusões
  1. +1
    -1
      Adafruit_Video_Looper/hello_video.py
  2. +1
    -1
      Adafruit_Video_Looper/omxplayer.py

+ 1
- 1
Adafruit_Video_Looper/hello_video.py Ver arquivo

@@ -44,7 +44,7 @@ class HelloVideoPlayer:
self._process.poll()
return self._process.returncode is None

def stop(self, block_timeout_sec=None):
def stop(self, block_timeout_sec=0):
"""Stop the video player. block_timeout_sec is how many seconds to
block waiting for the player to stop before moving on.
"""


+ 1
- 1
Adafruit_Video_Looper/omxplayer.py Ver arquivo

@@ -51,7 +51,7 @@ class OMXPlayer:
self._process.poll()
return self._process.returncode is None

def stop(self, block_timeout_sec=None):
def stop(self, block_timeout_sec=0):
"""Stop the video player. block_timeout_sec is how many seconds to
block waiting for the player to stop before moving on.
"""


Carregando…
Cancelar
Salvar