Skip to content

issues Search Results · repo:jdkandersson/flake8-docstrings-complete language:Python

Filter by

14 results
 (61 ms)

14 results

injdkandersson/flake8-docstrings-complete (press backspace or delete to remove)

python -m venv venv source ./venv/bin/activate pip install flake8 flake8-docstrings flake8-docstrings-complete flake8 source.py
  • MakotoGew
  • Opened 
    on Dec 19, 2024
  • #34

I have a method that can raise some exceptions but all of those manually raise exception are caught with except clauses. Imo, in this case it would be unnecessary to have the Raises: block in the docstring ...
  • Xoriun
  • Opened 
    on Sep 14, 2024
  • #30

Issue Consider the function def foo(self, blah, bleh): A function. Args: blah: A string. Note: Beware of tricky issue XYZ, documented at ...
  • tomtseng
  • Opened 
    on Jul 5, 2024
  • #29

If I have the following code: from abc import ABCMeta, abstractmethod from typing import override def main() - None: Main. print( main ) foo = FooImpl() print(foo.get_name()) ...
  • ni-co-la
  • Opened 
    on Dec 1, 2023
  • #24

Here is a sample code that triggers DCO010 for overloads: from typing import overload @overload def factorial(n: int) - int: ... @overload def factorial(n: float) - float: ... def factorial(n): ...
  • vpoulailleau
  • Opened 
    on Nov 21, 2023
  • #20

If I have the following code in 2 different files: file1.py class BaseClass(ABC): def __init__(self, name): self.name = name file2.py class ClassExample(BaseClass): Class Exmaple. ...
  • JCHacking
  • Opened 
    on Oct 24, 2023
  • #19

If I have the following code, it gives me error because it is not documented error in Raises, but it should document PlaywrightError instead of error async def fill(self, text: str, time_wait: int ...
  • JCHacking
  • Opened 
    on Oct 24, 2023
  • #18

If I have the following code: Actions that we can perform on to a fragment. from abc import ABC, abstractmethod from typing import Optional, Sequence from py_web_gui.action.types import Key, ModificationKey ...
  • JCHacking
  • Opened 
    on Oct 24, 2023
  • #17

Need an option to avoid documenting, def _private_method(param1, param2); Currently it gives, DCO010 docstring should be defined for a function/ method/ class, more information: https://github.com/jdkandersson/flake8-docstrings-complete#fix-dco010 ...
  • aannara
  • 1
  • Opened 
    on Oct 9, 2023
  • #16

Currently if __init__ does not have a docstring. We get this error: DCO010 docstring should be defined for a function/ method/ class, more information: https://github.com/jdkandersson/flake8-docstrings-complete#fix-dco010. ...
  • aannara
  • 3
  • Opened 
    on Oct 9, 2023
  • #15
Issue origami icon

Learn how you can use GitHub Issues to plan and track your work.

Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub Issues
ProTip! 
Restrict your search to the title by using the in:title qualifier.
Issue origami icon

Learn how you can use GitHub Issues to plan and track your work.

Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub Issues
ProTip! 
Restrict your search to the title by using the in:title qualifier.
Issue search results · GitHub