Skip to content

Commit

Permalink
added isort==5.1.4 requirements to test
Browse files Browse the repository at this point in the history
  • Loading branch information
jjmachan committed Aug 15, 2020
1 parent b7bc5a9 commit 6b18a48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install pytest pytest-cov mypy black isort torch
pip install pytest pytest-cov mypy black isort==5.1.4 torch
pip install .
- name: Test
run: bash scripts/test.sh
Expand Down
3 changes: 1 addition & 2 deletions stockroom/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@
from pathlib import Path

import click
from click_didyoumean import DYMGroup # type: ignore
from hangar import Repository
from rich.progress import Progress
from stockroom import __version__, external
from stockroom.core import StockRoom
from stockroom.keeper import init_repo
from stockroom.utils import console, new_columns_table

from click_didyoumean import DYMGroup # type: ignore


@click.group(
no_args_is_help=True,
Expand Down

0 comments on commit 6b18a48

Please sign in to comment.