nephila/python-taiga

View on GitHub

Showing 85 of 85 total issues

Similar blocks of code found in 4 locations. Consider refactoring.
Open

    def upvote(self):
        """
        Upvote :class:`Issue`.
        """
        self.requester.post("/{endpoint}/{id}/upvote", endpoint=self.endpoint, id=self.id)
Severity: Major
Found in taiga/models/models.py and 3 other locations - About 40 mins to fix
taiga/models/models.py on lines 976..981
taiga/models/models.py on lines 1307..1312
taiga/models/models.py on lines 1314..1319

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 34.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 4 locations. Consider refactoring.
Open

    def unlike(self):
        """
        Unlike the project
        """
        self.requester.post("/{endpoint}/{id}/unlike", endpoint=self.endpoint, id=self.id)
Severity: Major
Found in taiga/models/models.py and 3 other locations - About 40 mins to fix
taiga/models/models.py on lines 969..974
taiga/models/models.py on lines 976..981
taiga/models/models.py on lines 1307..1312

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 34.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 3 locations. Consider refactoring.
Open

    def import_milestone(self, name, estimated_start, estimated_finish, **attrs):
        """
        Import a Milestone and returns a :class:`Milestone` object.

        :param name: name of :class:`Milestone`
Severity: Major
Found in taiga/models/models.py and 2 other locations - About 40 mins to fix
taiga/models/models.py on lines 1435..1446
taiga/models/models.py on lines 1720..1729

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 34.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Function create has 5 arguments (exceeds 4 allowed). Consider refactoring.
Open

    def create(self, project, name, url, key, **attrs):
Severity: Minor
Found in taiga/models/models.py - About 35 mins to fix

    Function get has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        def get(self, uri, query=None, cache=False, paginate=True, **parameters):
    Severity: Minor
    Found in taiga/requestmaker.py - About 35 mins to fix

      Function duplicate has 5 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          def duplicate(self, name, description, is_private=False, users=[], **attrs):
      Severity: Minor
      Found in taiga/models/models.py - About 35 mins to fix

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

            def __init__(
        Severity: Minor
        Found in taiga/client.py - About 35 mins to fix

          Function create has 5 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              def create(self, project, name, estimated_start, estimated_finish, **attrs):
          Severity: Minor
          Found in taiga/models/models.py - About 35 mins to fix

            Function post has 5 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                def post(self, uri, payload=None, query=None, files=None, **parameters):
            Severity: Minor
            Found in taiga/requestmaker.py - About 35 mins to fix

              Function import_ has 5 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                  def import_(self, project, name, estimated_start, estimated_finish, **attrs):
              Severity: Minor
              Found in taiga/models/models.py - About 35 mins to fix

                Similar blocks of code found in 5 locations. Consider refactoring.
                Open

                    def attach(self, attached_file, **attrs):
                        """
                        Attach a file to the :class:`Epic`
                
                        :param attached_file: file path to attach
                Severity: Major
                Found in taiga/models/models.py and 4 other locations - About 35 mins to fix
                taiga/models/models.py on lines 480..487
                taiga/models/models.py on lines 812..819
                taiga/models/models.py on lines 983..990
                taiga/models/models.py on lines 1837..1844

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 33.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Similar blocks of code found in 5 locations. Consider refactoring.
                Open

                    def attach(self, attached_file, **attrs):
                        """
                        Attach a file to the :class:`WikiPage`
                
                        :param attached_file: file path to attach
                Severity: Major
                Found in taiga/models/models.py and 4 other locations - About 35 mins to fix
                taiga/models/models.py on lines 337..344
                taiga/models/models.py on lines 480..487
                taiga/models/models.py on lines 812..819
                taiga/models/models.py on lines 983..990

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 33.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Similar blocks of code found in 5 locations. Consider refactoring.
                Open

                    def attach(self, attached_file, **attrs):
                        """
                        Attach a file to the :class:`Issue`
                
                        :param attached_file: file path to attach
                Severity: Major
                Found in taiga/models/models.py and 4 other locations - About 35 mins to fix
                taiga/models/models.py on lines 337..344
                taiga/models/models.py on lines 480..487
                taiga/models/models.py on lines 812..819
                taiga/models/models.py on lines 1837..1844

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 33.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Similar blocks of code found in 5 locations. Consider refactoring.
                Open

                    def attach(self, attached_file, **attrs):
                        """
                        Attach a file to the :class:`Task`
                
                        :param attached_file: file path to attach
                Severity: Major
                Found in taiga/models/models.py and 4 other locations - About 35 mins to fix
                taiga/models/models.py on lines 337..344
                taiga/models/models.py on lines 480..487
                taiga/models/models.py on lines 983..990
                taiga/models/models.py on lines 1837..1844

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 33.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Similar blocks of code found in 5 locations. Consider refactoring.
                Open

                    def attach(self, attached_file, **attrs):
                        """
                        Attach a file to the :class:`UserStory`
                
                        :param attached_file: file path to attach
                Severity: Major
                Found in taiga/models/models.py and 4 other locations - About 35 mins to fix
                taiga/models/models.py on lines 337..344
                taiga/models/models.py on lines 812..819
                taiga/models/models.py on lines 983..990
                taiga/models/models.py on lines 1837..1844

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 33.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Similar blocks of code found in 8 locations. Consider refactoring.
                Open

                    def add_wikilink(self, title, href, **attrs):
                        """
                        Add a Wiki link to the project and returns a :class:`WikiLink` object.
                
                        :param title: title of :class:`WikiLink`
                Severity: Major
                Found in taiga/models/models.py and 7 other locations - About 30 mins to fix
                taiga/models/models.py on lines 1345..1355
                taiga/models/models.py on lines 1372..1380
                taiga/models/models.py on lines 1467..1475
                taiga/models/models.py on lines 1514..1522
                taiga/models/models.py on lines 1617..1624
                taiga/models/models.py on lines 1626..1634
                taiga/models/models.py on lines 1652..1660

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 32.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Similar blocks of code found in 8 locations. Consider refactoring.
                Open

                    def import_task(self, subject, status, **attrs):
                        """
                        Import a Task and return a :class:`Task` object.
                
                        :param subject: subject of :class:`Task`
                Severity: Major
                Found in taiga/models/models.py and 7 other locations - About 30 mins to fix
                taiga/models/models.py on lines 1345..1355
                taiga/models/models.py on lines 1372..1380
                taiga/models/models.py on lines 1467..1475
                taiga/models/models.py on lines 1617..1624
                taiga/models/models.py on lines 1626..1634
                taiga/models/models.py on lines 1642..1650
                taiga/models/models.py on lines 1652..1660

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 32.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Similar blocks of code found in 8 locations. Consider refactoring.
                Open

                    def import_wikilink(self, title, href, **attrs):
                        """
                        Import a Wiki link and return a :class:`WikiLink` object.
                
                        :param title: title of :class:`WikiLink`
                Severity: Major
                Found in taiga/models/models.py and 7 other locations - About 30 mins to fix
                taiga/models/models.py on lines 1345..1355
                taiga/models/models.py on lines 1372..1380
                taiga/models/models.py on lines 1467..1475
                taiga/models/models.py on lines 1514..1522
                taiga/models/models.py on lines 1617..1624
                taiga/models/models.py on lines 1626..1634
                taiga/models/models.py on lines 1642..1650

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 32.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Similar blocks of code found in 8 locations. Consider refactoring.
                Open

                    def add_membership(self, email, role, **attrs):
                        """
                        Add a Membership to the project and returns a
                        :class:`Membership` resource.
                
                
                Severity: Major
                Found in taiga/models/models.py and 7 other locations - About 30 mins to fix
                taiga/models/models.py on lines 1372..1380
                taiga/models/models.py on lines 1467..1475
                taiga/models/models.py on lines 1514..1522
                taiga/models/models.py on lines 1617..1624
                taiga/models/models.py on lines 1626..1634
                taiga/models/models.py on lines 1642..1650
                taiga/models/models.py on lines 1652..1660

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 32.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Similar blocks of code found in 8 locations. Consider refactoring.
                Open

                    def add_point(self, name, value, **attrs):
                        """
                        Add a Point to the project and returns a :class:`Point` object.
                
                        :param name: name of :class:`Point`
                Severity: Major
                Found in taiga/models/models.py and 7 other locations - About 30 mins to fix
                taiga/models/models.py on lines 1345..1355
                taiga/models/models.py on lines 1372..1380
                taiga/models/models.py on lines 1514..1522
                taiga/models/models.py on lines 1617..1624
                taiga/models/models.py on lines 1626..1634
                taiga/models/models.py on lines 1642..1650
                taiga/models/models.py on lines 1652..1660

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 32.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Severity
                Category
                Status
                Source
                Language