Skip to content

Commit

Permalink
BF: Movie stim was unecessarily converting opacity to a float, causin…
Browse files Browse the repository at this point in the history
…g error when opacity was None
  • Loading branch information
Todd authored and Todd committed Mar 15, 2021
1 parent 2a5c02e commit 50334df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion psychopy/visual/movie3.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def __init__(self, win,
self.flipHoriz = flipHoriz
self.pos = numpy.asarray(pos, float)
self.depth = depth
self.opacity = float(opacity)
self.opacity = opacity
self.interpolate = interpolate
self.noAudio = noAudio
self._audioStream = None
Expand Down

0 comments on commit 50334df

Please sign in to comment.