Skip to content

Commit

Permalink
add ffmpeg-python to toml
Browse files Browse the repository at this point in the history
  • Loading branch information
zeptofine committed Oct 2, 2023
1 parent f0dba5b commit a861312
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ wcmatch = "^8.5"
typer = { extras = ["all"], version = "^0.9.0" }
PySide6-Essentials = "^6.5.2"
ujson = "^5.8.0"
ffmpeg-python = "^0.2.0"


[tool.poetry.group.dev.dependencies]
Expand Down
3 changes: 1 addition & 2 deletions src/configs/configtypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,10 @@ class SpecialItemData(TypedDict):
class InputData(SpecialItemData):
expressions: list[str]
folder: str
...


class FilterData(SpecialItemData):
pass
...


class OutputData(SpecialItemData):
Expand Down
2 changes: 0 additions & 2 deletions src/image_filters/destroyers.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@


class BlurData(FilterData):
...
algorithms: list[str]
blur_range: list[int]
scale: float
Expand Down Expand Up @@ -66,7 +65,6 @@ def run(


class NoiseData(FilterData):
...
algorithms: list[str]
intensity_range: list[int]
scale: float
Expand Down

0 comments on commit a861312

Please sign in to comment.