diff options
author | MaZderMind <git@mazdermind.de> | 2015-09-02 15:20:01 +0200 |
---|---|---|
committer | MaZderMind <git@mazdermind.de> | 2015-09-02 15:20:01 +0200 |
commit | c6fc83122d988650ada11f45b833002ccaaa5dd5 (patch) | |
tree | 78e3a62e59b8428310dc2cb4dda2fe958c19214f | |
parent | 20d75f6c7f5cad2f5c1b4da71ad5405848230201 (diff) |
declare CompositeModes to be unique
-rw-r--r-- | voctocore/lib/videomix.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/voctocore/lib/videomix.py b/voctocore/lib/videomix.py index e0beefb..71909d9 100644 --- a/voctocore/lib/videomix.py +++ b/voctocore/lib/videomix.py @@ -1,10 +1,11 @@ #!/usr/bin/python3 import logging from gi.repository import Gst -from enum import Enum +from enum import Enum, unique from lib.config import Config +@unique class CompositeModes(Enum): fullscreen = 0 side_by_side_equal = 1 |