Skip to content

Commit

Permalink
Update libmwcapture.py
Browse files Browse the repository at this point in the history
Removed unused win32 import from libmwcapture.py
  • Loading branch information
crnbaker authored Jul 20, 2023
1 parent 9a320ea commit 9d69b42
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/mwcapture/libmwcapture.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import platform
import os
from ctypes import *
from win32 import win32event
from pathlib import Path

MW_SUCCEEDED = 0
Expand Down Expand Up @@ -1232,4 +1231,4 @@ def mwcapture_set_video_eco_frame(self, hchannel, frame):
def mw_stop_video_eco_capture(self, hchannel):
if self.m_lib_mw_capture == 0:
return -1
return self.m_lib_mw_capture.MWStopVideoEcoCapture(hchannel)
return self.m_lib_mw_capture.MWStopVideoEcoCapture(hchannel)

0 comments on commit 9d69b42

Please sign in to comment.