Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lk-geimfari committed Jul 1, 2023
1 parent 8d6bbfb commit af8b028
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
# All configuration values have a default; values that are commented out
# serve to show the default.
import copy

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
Expand Down
6 changes: 3 additions & 3 deletions scripts/format.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ if [[ ! -z "$CHECK" ]]; then
echo 'Running lint check'
fi

poetry run isort mimesis tests examples $CHECK
poetry run black mimesis tests examples $CHECK
poetry run isort mimesis tests $CHECK
poetry run black mimesis tests $CHECK
poetry run autoflake \
--remove-all-unused-imports \
--recursive \
--remove-unused-variables \
--in-place \
--exclude=__init__.py \
--quiet \
mimesis tests examples $CHECK
mimesis tests $CHECK

0 comments on commit af8b028

Please sign in to comment.