alot/account.py

Summary

Maintainability
C
7 hrs
Test Coverage

File account.py has 300 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# encoding=utf-8
# Copyright (C) 2011-2012  Patrick Totzke <patricktotzke@gmail.com>
# Copyright © 2017 Dylan Baker
# This file is released under the GNU GPL, version 3 or a later revision.
# For further details see the COPYING file
Severity: Minor
Found in alot/account.py - About 3 hrs to fix

    Function __init__ has 21 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        def __init__(self, address=None, aliases=None, alias_regexp=None,
    Severity: Major
    Found in alot/account.py - About 2 hrs to fix

      Function __cmp has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

          def __cmp(self, other, comparitor):
              """Shared helper for rich comparison operators.
      
              This allows the comparison operators to be relatively simple and share
              the complex logic.
      Severity: Minor
      Found in alot/account.py - About 35 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function store_mail has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

          def store_mail(mbx, mail):
              """
              stores given mail in mailbox. If mailbox is maildir, set the S-flag and
              return path to newly added mail. Oherwise this will return `None`.
      
      
      Severity: Minor
      Found in alot/account.py - About 35 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function matches_address has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def matches_address(self, address):
              """returns whether this account knows about an email address
      
              :param str address: address to look up
              :rtype: bool
      Severity: Minor
      Found in alot/account.py - About 25 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function __init__ has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def __init__(self, address=None, aliases=None, alias_regexp=None,
                       realname=None, gpg_key=None, signature=None,
                       signature_filename=None, signature_as_attachment=False,
                       sent_box=None, sent_tags=None, draft_box=None,
                       draft_tags=None, replied_tags=None, passed_tags=None,
      Severity: Minor
      Found in alot/account.py - About 25 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Line break after binary operator
      Open

              return (comparitor(username, ouser) and
      Severity: Minor
      Found in alot/account.py by pep8

      Avoid breaks after binary operators.

      The preferred place to break around a binary operator is before the
      operator, not after it.
      
      W504: (width == 0 +\n height == 0)
      W504: (width == 0 and\n height == 0)
      W504: var = (1 &\n       ~2)
      
      Okay: foo(\n    -x)
      Okay: foo(x\n    [])
      Okay: x = '''\n''' + ''
      Okay: x = '' + '''\n'''
      Okay: foo(x,\n    -y)
      Okay: foo(x,  # comment\n    -y)
      
      The following should be W504 but unary_context is tricky with these
      Okay: var = (1 /\n       -2)
      Okay: var = (1 +\n       -1 +\n       -2)

      There are no issues that match your filters.

      Category
      Status