~maxiberta/canonical-identity-provider/flake8-import-order

« back to all changes in this revision

Viewing changes to src/ubuntu_sso_saml/processors.py

  • Committer: Maximiliano Bertacchini
  • Date: 2018-02-09 14:17:25 UTC
  • Revision ID: maximiliano.bertacchini@canonical.com-20180209141725-i2v7ady5gm9cy9p9
Upgrade flake8 to 3.5.0 and fix code style accordingly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
293
293
    def _decode_request(self):
294
294
        try:
295
295
            self._request_xml = self._decode_request_compressed()
296
 
        except:
 
296
        except:  # noqa
297
297
            self._request_xml = self._decode_request_uncompressed()
298
298
 
299
299
    def _determine_audience(self):