Skip to content

Commit

Permalink
videodev: remove unnecessary ABCMeta
Browse files Browse the repository at this point in the history
  • Loading branch information
tomba committed Oct 31, 2024
1 parent 7959b52 commit 87320d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions v4l2/videodev.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import annotations

from abc import ABC, ABCMeta, abstractmethod
from abc import ABC, abstractmethod
import ctypes
import errno
import fcntl
Expand Down Expand Up @@ -242,7 +242,7 @@ def fd(self):
return self.vdev.fd


class VideoCaptureStreamer(CaptureStreamer, metaclass=ABCMeta):
class VideoCaptureStreamer(CaptureStreamer):
def __init__(self, vdev: VideoDevice, mem_type: v4l2.MemType, buf_type: v4l2.BufType,
width: int, height: int, format: v4l2.PixelFormat) -> None:
super().__init__(vdev, mem_type, buf_type)
Expand Down

0 comments on commit 87320d5

Please sign in to comment.