Skip to content

Commit b0eaa88

Browse files
committed
add new video effects to the __all__
1 parent af0631b commit b0eaa88

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

vidiopy/video/fx/__init__.py

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,25 @@
11
from .accel_decel import accel_decel
22
from .crop import crop
3+
from .filters import (
4+
gaussian_blur,
5+
box_blur,
6+
unsharp_mask,
7+
median_filter,
8+
contrast,
9+
brightness,
10+
saturation,
11+
sharpness,
12+
)
313

4-
__all__ = ["accel_decel", "crop"]
14+
__all__ = [
15+
"accel_decel",
16+
"crop",
17+
"gaussian_blur",
18+
"box_blur",
19+
"unsharp_mask",
20+
"median_filter",
21+
"contrast",
22+
"brightness",
23+
"saturation",
24+
"sharpness",
25+
]

0 commit comments

Comments
 (0)