File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 11# Author: Dylan Turner
22# Description: Keep app settings in one place
33
4+ from typing import Tuple
45from dataclasses import dataclass
56from argparse import ArgumentParser
67from subprocess import run , PIPE
@@ -13,7 +14,7 @@ class AppSettings:
1314 screen_height : int
1415 view_scale : float
1516 rm_thresh : float
16- fill_color : tuple [float , float , float ]
17+ fill_color : Tuple [float , float , float ]
1718 bg_img : str
1819 blur : bool
1920 disable_win : bool
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " bgrm"
3- version = " 9 "
3+ version = " 10 "
44description = " Remove backgrounds from video feeds in your web cam applications."
55authors = [ " Dylan Turner <dylantdmt@gmail.com>" ]
66license = " GPL-3.0-only"
You can’t perform that action at this time.
0 commit comments