We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e974378 commit 62e81ebCopy full SHA for 62e81eb
1 file changed
brainframe/api/bf_codecs/zone_codecs.py
@@ -1,5 +1,5 @@
1
from collections import Counter
2
-from typing import List, Optional
+from typing import ClassVar, List, Optional
3
4
from dataclasses import dataclass, field
5
@@ -11,6 +11,8 @@
11
@dataclass
12
class Zone(Codec):
13
"""The definition for a zone. It is a non-convex polygon or a line."""
14
+ FULL_FRAME_ZONE_NAME: ClassVar[str] = "Screen"
15
+ """The name of the default full-frame zone that exists on every stream"""
16
17
name: str
18
"""A friendly name for the zone"""
0 commit comments