Commit c33fb6af authored by Joel Collins's avatar Joel Collins
Browse files

Fixed initial stream object

parent b3332c07
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -111,7 +111,7 @@ class PiCameraStreamer(BaseCamera):
        )  #: str: Path of .npy lens shading table file

        # Start the stream worker on init
        self.stream = None
        self.stream = io.BytesIO()  # Create a stream object
        self.start_worker()

    @property