Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
unode committed May 30, 2021
1 parent 0404baa commit 0f95dff
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ repos:
- "--filter-files"
- repo: https://github.com/psf/black
# Code style formatting
rev: 20.8b1
rev: 21.5b1
hooks:
- id: black
- repo: https://gitlab.com/pycqa/flake8
Expand Down
7 changes: 5 additions & 2 deletions mmpy_bot/plugins/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ class Plugin(ABC):
"""

def __init__(
self, direct_help: bool = False,
self,
direct_help: bool = False,
):
self.driver: Optional[Driver] = None
self.settings: Optional[Settings] = None
Expand Down Expand Up @@ -113,7 +114,9 @@ class PluginManager:
"""

def __init__(
self, plugins: Sequence[Plugin], direct_help: bool = True,
self,
plugins: Sequence[Plugin],
direct_help: bool = True,
):
self.driver: Optional[Driver] = None
self.settings: Optional[Settings] = None
Expand Down

0 comments on commit 0f95dff

Please sign in to comment.