Skip to content

Commit

Permalink
Fix double assignation to the variable video
Browse files Browse the repository at this point in the history
  • Loading branch information
Mario Ruiz committed Jan 19, 2022
1 parent 9f91eb4 commit cab4ed3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ def update_notebooks_display_port(module_name):
filedata = filedata.replace("VideoStream(ol, source=VSource.MIPI)",
"VideoStream(ol, source=VSource.MIPI, sink=VSink.DP)")
filedata = filedata.replace("VideoStream(ol, source=VSource.OpenCV)",
"video = VideoStream(ol, source=VSource.OpenCV, sink=VSink.DP)")
"VideoStream(ol, source=VSource.OpenCV, sink=VSink.DP)")
filedata = filedata.replace("VideoStream(ol)",
"video = VideoStream(ol, source=VSource.OpenCV, sink=VSink.DP)")
"VideoStream(ol, source=VSource.OpenCV, sink=VSink.DP)")
filedata = filedata.replace("cpipe.hdmi_source_in",
"cpipe.ps_video_in")
filedata = filedata.replace("cpipe.hdmi_source_out",
Expand Down

0 comments on commit cab4ed3

Please sign in to comment.