Skip to content

Commit

Permalink
Patch to properly support Python 3.8 (#23)
Browse files Browse the repository at this point in the history
* settings.py: switched to importing tuple type to support python 3.8

* pyproject.toml: bumped version number
  • Loading branch information
blueOkiris authored Nov 16, 2022
1 parent bcf2f23 commit ee60e6c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion bgrm/settings.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Author: Dylan Turner
# Description: Keep app settings in one place

from typing import Tuple
from dataclasses import dataclass
from argparse import ArgumentParser
from subprocess import run, PIPE
Expand All @@ -13,7 +14,7 @@ class AppSettings:
screen_height: int
view_scale: float
rm_thresh: float
fill_color: tuple[float, float, float]
fill_color: Tuple[float, float, float]
bg_img: str
blur: bool
disable_win: bool
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "bgrm"
version = "9"
version = "10"
description = "Remove backgrounds from video feeds in your web cam applications."
authors = [ "Dylan Turner <[email protected]>" ]
license = "GPL-3.0-only"
Expand Down

0 comments on commit ee60e6c

Please sign in to comment.