expressly/expressly-plugin-sdk-python3-core

View on GitHub
expressly/routes.py

Summary

Maintainability
A
0 mins
Test Coverage

Invalid escape sequence '-'
Open

    'user': Route('/?expressly/api/user/(?P<email>[0-9a-zA-Z\-\_]+\@[0-9a-zA-Z\-\_\.]+)/?', authorization=False),
Severity: Minor
Found in expressly/routes.py by pep8

Invalid escape sequences are deprecated in Python 3.6.

Okay: regex = r'\.png$'
W605: regex = '\.png$'

Invalid escape sequence '\@'
Open

    'user': Route('/?expressly/api/user/(?P<email>[0-9a-zA-Z\-\_]+\@[0-9a-zA-Z\-\_\.]+)/?', authorization=False),
Severity: Minor
Found in expressly/routes.py by pep8

Invalid escape sequences are deprecated in Python 3.6.

Okay: regex = r'\.png$'
W605: regex = '\.png$'

Invalid escape sequence '.'
Open

    'user': Route('/?expressly/api/user/(?P<email>[0-9a-zA-Z\-\_]+\@[0-9a-zA-Z\-\_\.]+)/?', authorization=False),
Severity: Minor
Found in expressly/routes.py by pep8

Invalid escape sequences are deprecated in Python 3.6.

Okay: regex = r'\.png$'
W605: regex = '\.png$'

Line too long (113 > 79 characters)
Open

    'user': Route('/?expressly/api/user/(?P<email>[0-9a-zA-Z\-\_]+\@[0-9a-zA-Z\-\_\.]+)/?', authorization=False),
Severity: Minor
Found in expressly/routes.py by pep8

Limit all lines to a maximum of 79 characters.

There are still many devices around that are limited to 80 character
lines; plus, limiting windows to 80 characters makes it possible to
have several windows side-by-side.  The default wrapping on such
devices looks ugly.  Therefore, please limit all lines to a maximum
of 79 characters. For flowing long blocks of text (docstrings or
comments), limiting the length to 72 characters is recommended.

Reports error E501.

Invalid escape sequence '_'
Open

    'user': Route('/?expressly/api/user/(?P<email>[0-9a-zA-Z\-\_]+\@[0-9a-zA-Z\-\_\.]+)/?', authorization=False),
Severity: Minor
Found in expressly/routes.py by pep8

Invalid escape sequences are deprecated in Python 3.6.

Okay: regex = r'\.png$'
W605: regex = '\.png$'

Invalid escape sequence '-'
Open

    'user': Route('/?expressly/api/user/(?P<email>[0-9a-zA-Z\-\_]+\@[0-9a-zA-Z\-\_\.]+)/?', authorization=False),
Severity: Minor
Found in expressly/routes.py by pep8

Invalid escape sequences are deprecated in Python 3.6.

Okay: regex = r'\.png$'
W605: regex = '\.png$'

Line too long (108 > 79 characters)
Open

        '/?expressly/api/(?P<uuid>[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})/migrate/?'),
Severity: Minor
Found in expressly/routes.py by pep8

Limit all lines to a maximum of 79 characters.

There are still many devices around that are limited to 80 character
lines; plus, limiting windows to 80 characters makes it possible to
have several windows side-by-side.  The default wrapping on such
devices looks ugly.  Therefore, please limit all lines to a maximum
of 79 characters. For flowing long blocks of text (docstrings or
comments), limiting the length to 72 characters is recommended.

Reports error E501.

Line too long (100 > 79 characters)
Open

        '/?expressly/api/(?P<uuid>[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})/?'),
Severity: Minor
Found in expressly/routes.py by pep8

Limit all lines to a maximum of 79 characters.

There are still many devices around that are limited to 80 character
lines; plus, limiting windows to 80 characters makes it possible to
have several windows side-by-side.  The default wrapping on such
devices looks ugly.  Therefore, please limit all lines to a maximum
of 79 characters. For flowing long blocks of text (docstrings or
comments), limiting the length to 72 characters is recommended.

Reports error E501.

Invalid escape sequence '_'
Open

    'user': Route('/?expressly/api/user/(?P<email>[0-9a-zA-Z\-\_]+\@[0-9a-zA-Z\-\_\.]+)/?', authorization=False),
Severity: Minor
Found in expressly/routes.py by pep8

Invalid escape sequences are deprecated in Python 3.6.

Okay: regex = r'\.png$'
W605: regex = '\.png$'

There are no issues that match your filters.

Category
Status