diff options
| author | rr- | 2017-04-24 23:30:53 +0200 |
|---|---|---|
| committer | rr- | 2017-04-24 23:30:53 +0200 |
| commit | 4bc58a3c9531c948aa070c2d42ad93b34de5a464 (patch) | |
| tree | ee6d3853b8be93b3933cff596f052bd013590fff /server/szurubooru/errors.py | |
| parent | fea9a949453482f7ede7957dbeeddb3c2ff427cc (diff) | |
server: lint
Diffstat (limited to 'server/szurubooru/errors.py')
| -rw-r--r-- | server/szurubooru/errors.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/szurubooru/errors.py b/server/szurubooru/errors.py index b5f1cc3..beeb469 100644 --- a/server/szurubooru/errors.py +++ b/server/szurubooru/errors.py @@ -4,8 +4,8 @@ from typing import Dict class BaseError(RuntimeError): def __init__( self, - message: str='Unknown error', - extra_fields: Dict[str, str]=None) -> None: + message: str = 'Unknown error', + extra_fields: Dict[str, str] = None) -> None: super().__init__(message) self.extra_fields = extra_fields |