Skip to content

Commit

Permalink
Fix isort
Browse files Browse the repository at this point in the history
  • Loading branch information
osaajani committed Dec 31, 2024
1 parent a195334 commit 6528bcf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/formatting_linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@ jobs:
python -m pip install --upgrade wheel pip
pip install .[lint]
- name: Run isort
run: isort --check-only --diff moviepy setup.py scripts docs/conf.py examples tests
run: isort --check-only --diff moviepy scripts docs/conf.py examples tests
2 changes: 1 addition & 1 deletion moviepy/video/VideoClip.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
requires_fps,
use_clip_fps_by_default,
)
from moviepy.tools import extensions_dict, find_extension, compute_position
from moviepy.tools import compute_position, extensions_dict, find_extension
from moviepy.video.fx.Crop import Crop
from moviepy.video.fx.Resize import Resize
from moviepy.video.fx.Rotate import Rotate
Expand Down
1 change: 1 addition & 0 deletions tests/test_issues.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""Issue tests meant to be run with pytest."""

import os

import numpy as np

import pytest
Expand Down

0 comments on commit 6528bcf

Please sign in to comment.