Skip to content

Commit

Permalink
refactor: remove shutilwhich and use lib version
Browse files Browse the repository at this point in the history
  • Loading branch information
escaped committed Oct 20, 2020
1 parent e845fe4 commit 9a9d51c
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 15 deletions.
13 changes: 1 addition & 12 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ packages = [
[tool.poetry.dependencies]
python = ">=3.6.1, <4.0"
django-appconf = "^1.0"
shutilwhich = "^1.1"
django = ">=2.2"
pillow = ">=5.0"

Expand Down
2 changes: 1 addition & 1 deletion video_encoding/backends/ffmpeg.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
import os
import re
import tempfile
from shutil import which
from subprocess import PIPE, Popen

from django.core import checks

from .. import exceptions
from ..compat import which
from ..config import settings
from .base import BaseEncodingBackend

Expand Down
1 change: 0 additions & 1 deletion video_encoding/compat.py

This file was deleted.

0 comments on commit 9a9d51c

Please sign in to comment.