Skip to content

Commit

Permalink
Minor lint improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
simonrob committed Jul 8, 2024
1 parent 23d3b4a commit 4e1dfd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions emailproxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
__author__ = 'Simon Robinson'
__copyright__ = 'Copyright (c) 2024 Simon Robinson'
__license__ = 'Apache 2.0'
__version__ = '2024-06-28' # ISO 8601 (YYYY-MM-DD)
__version__ = '2024-07-08' # ISO 8601 (YYYY-MM-DD)
__package_version__ = '.'.join([str(int(i)) for i in __version__.split('-')]) # for pyproject.toml usage only

import abc
Expand Down Expand Up @@ -977,7 +977,7 @@ def start_redirection_receiver_server(token_request):
Log.format_host_port((parsed_uri.hostname, parsed_port)))

class LoggingWSGIRequestHandler(wsgiref.simple_server.WSGIRequestHandler):
# pylint: disable=arguments-differ
# pylint: disable-next=arguments-differ
def log_message(self, _format_string, *args):
Log.debug('Local server auth mode (%s): received authentication response' % Log.format_host_port(
(parsed_uri.hostname, parsed_port)), *args)
Expand Down

0 comments on commit 4e1dfd8

Please sign in to comment.