Skip to content

Commit

Permalink
Merge pull request #15 from lsst/tickets/DM-34610a
Browse files Browse the repository at this point in the history
DM-34610: Disable flake8 N818 for faked exceptions.
  • Loading branch information
ktlim committed May 23, 2022
2 parents f1bf1f7 + 7bc7dee commit 4709c1a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions python/lsst/resources/gs.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,19 @@
class ClientError(Exception):
pass

class NotFound(ClientError): # type: ignore
class NotFound(ClientError): # type: ignore # noqa: N818
pass

class TooManyRequests(ClientError): # type: ignore
class TooManyRequests(ClientError): # type: ignore # noqa: N818
pass

class InternalServerError(ClientError): # type: ignore
pass

class BadGateway(ClientError): # type: ignore
class BadGateway(ClientError): # type: ignore # noqa: N818
pass

class ServiceUnavailable(ClientError): # type: ignore
class ServiceUnavailable(ClientError): # type: ignore # noqa: N818
pass


Expand Down

0 comments on commit 4709c1a

Please sign in to comment.