Skip to content

Commit

Permalink
Bust AppVeyor cache via poetry lock
Browse files Browse the repository at this point in the history
  • Loading branch information
jacebrowning committed Jan 21, 2019
1 parent 389d8a7 commit 2bb97ac
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Expand Up @@ -8,7 +8,7 @@ environment:
PYTHON_MINOR: 7

cache:
- .venv -> Makefile
- .venv -> poetry.lock

install:
# Add Make and Python to the PATH
Expand Down
2 changes: 1 addition & 1 deletion gitman/exceptions.py
Expand Up @@ -11,7 +11,7 @@ class ShellError(RuntimeError):
def __init__(self, *args, **kwargs):
self.program = kwargs.pop('program', None)
self.output = kwargs.pop('output', None)
super().__init__(*args, **kwargs)
super().__init__(*args, **kwargs) # type: ignore


class InvalidRepository(RuntimeError):
Expand Down
30 changes: 15 additions & 15 deletions poetry.lock

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

0 comments on commit 2bb97ac

Please sign in to comment.