sgammon/canteen

View on GitHub

Showing 1,384 of 1,384 total issues

Indentation is not a multiple of 4 (comment)
Open

  # == Abstract Properties == #
Severity: Minor
Found in canteen/core/runtime.py by pep8

Use indent_size (PEP8 says 4) spaces per indentation level.

For really old code that you don't want to mess up, you can continue
to use 8-space tabs.

Okay: a = 1
Okay: if a == 0:\n    a = 1
E111:   a = 1
E114:   # a = 1

Okay: for item in items:\n    pass
E112: for item in items:\npass
E115: for item in items:\n# Hi\n    pass

Okay: a = 1\nb = 2
E113: a = 1\n    b = 2
E116: a = 1\n    # b = 2

Indentation is not a multiple of 4 (comment)
Open

      # unpack response
Severity: Minor
Found in canteen/core/runtime.py by pep8

Use indent_size (PEP8 says 4) spaces per indentation level.

For really old code that you don't want to mess up, you can continue
to use 8-space tabs.

Okay: a = 1
Okay: if a == 0:\n    a = 1
E111:   a = 1
E114:   # a = 1

Okay: for item in items:\n    pass
E112: for item in items:\npass
E115: for item in items:\n# Hi\n    pass

Okay: a = 1\nb = 2
E113: a = 1\n    b = 2
E116: a = 1\n    # b = 2

Indentation is not a multiple of 4 (comment)
Open

      # default: return dispatch directly
Severity: Minor
Found in canteen/core/runtime.py by pep8

Use indent_size (PEP8 says 4) spaces per indentation level.

For really old code that you don't want to mess up, you can continue
to use 8-space tabs.

Okay: a = 1
Okay: if a == 0:\n    a = 1
E111:   a = 1
E114:   # a = 1

Okay: for item in items:\n    pass
E112: for item in items:\npass
E115: for item in items:\n# Hi\n    pass

Okay: a = 1\nb = 2
E113: a = 1\n    b = 2
E116: a = 1\n    # b = 2

Indentation is not a multiple of 4 (comment)
Open

          ## grab a profiler
Severity: Minor
Found in canteen/core/runtime.py by pep8

Use indent_size (PEP8 says 4) spaces per indentation level.

For really old code that you don't want to mess up, you can continue
to use 8-space tabs.

Okay: a = 1
Okay: if a == 0:\n    a = 1
E111:   a = 1
E114:   # a = 1

Okay: for item in items:\n    pass
E112: for item in items:\npass
E115: for item in items:\n# Hi\n    pass

Okay: a = 1\nb = 2
E113: a = 1\n    b = 2
E116: a = 1\n    # b = 2

Indentation is not a multiple of 4 (comment)
Open

          # run as staticmethod
Severity: Minor
Found in canteen/core/runtime.py by pep8

Use indent_size (PEP8 says 4) spaces per indentation level.

For really old code that you don't want to mess up, you can continue
to use 8-space tabs.

Okay: a = 1
Okay: if a == 0:\n    a = 1
E111:   a = 1
E114:   # a = 1

Okay: for item in items:\n    pass
E112: for item in items:\npass
E115: for item in items:\n# Hi\n    pass

Okay: a = 1\nb = 2
E113: a = 1\n    b = 2
E116: a = 1\n    # b = 2

Indentation is not a multiple of 4 (comment)
Open

      # send start_response
Severity: Minor
Found in canteen/core/runtime.py by pep8

Use indent_size (PEP8 says 4) spaces per indentation level.

For really old code that you don't want to mess up, you can continue
to use 8-space tabs.

Okay: a = 1
Okay: if a == 0:\n    a = 1
E111:   a = 1
E114:   # a = 1

Okay: for item in items:\n    pass
E112: for item in items:\npass
E115: for item in items:\n# Hi\n    pass

Okay: a = 1\nb = 2
E113: a = 1\n    b = 2
E116: a = 1\n    # b = 2

Indentation is not a multiple of 4 (comment)
Open

          ## handle flushing mechanics
Severity: Minor
Found in canteen/core/runtime.py by pep8

Use indent_size (PEP8 says 4) spaces per indentation level.

For really old code that you don't want to mess up, you can continue
to use 8-space tabs.

Okay: a = 1
Okay: if a == 0:\n    a = 1
E111:   a = 1
E114:   # a = 1

Okay: for item in items:\n    pass
E112: for item in items:\npass
E115: for item in items:\n# Hi\n    pass

Okay: a = 1\nb = 2
E113: a = 1\n    b = 2
E116: a = 1\n    # b = 2

TODO found
Open

    _session = None  # @TODO(sgammon): fix this
Severity: Minor
Found in canteen/logic/session.py by fixme

TODO found
Open

      # @TODO(sgammon): support custom adapters here
Severity: Minor
Found in canteen/logic/session.py by fixme

TODO found
Open

        # @TODO(sgammon): compiling file
Severity: Minor
Found in canteen/logic/template.py by fixme

TODO found
Open

    # @TODO(sgammon): convert to decorator
Severity: Minor
Found in canteen/logic/session.py by fixme

TODO found
Open

    # @TODO: different storage internal modes
Severity: Minor
Found in canteen/model/adapter/redis.py by fixme

TODO found
Open

          # @TODO(sgammon): access to structured keys in adapters
Severity: Minor
Found in canteen/model/adapter/redis.py by fixme

TODO found
Open

  # @TODO(sgammon): testing for ability to delete entities
Severity: Minor
Found in canteen/model/adapter/redis.py by fixme

TODO found
Open

# @TODO(sgammon): wtf is root
Severity: Minor
Found in canteen/dispatch.py by fixme

TODO found
Open

        return target  # args no longer supported @TODO(sgammon): look at this
Severity: Minor
Found in canteen/util/decorators.py by fixme

TODO found
Open

    # @TODO(sgammon): rename __aliases__ as it clashes with DI
Severity: Minor
Found in canteen/logic/http/semantics.py by fixme

TODO found
Open

        try:  # @TODO(sgammon): better logging here
Severity: Minor
Found in canteen/rpc/__init__.py by fixme

TODO found
Open

      # @TODO(sgammon): make this named-parameter friendly
Severity: Minor
Found in canteen/logic/assets.py by fixme

TODO found
Open

          # @TODO(sgammon): access to structured keys in adapters
Severity: Minor
Found in canteen/model/adapter/redis.py by fixme
Severity
Category
Status
Source
Language