Showing 205 of 205 total issues
Indentation contains tabs Open
Open
ret.append("%s(%s)%s" % (class_code, self.to_code_attrs(), childs_code))
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
On new projects, spaces-only are strongly recommended over tabs.
Okay: if True:\n return
W191: if True:\n\treturn
Over-indented Open
Open
pass
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
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
Open
The TODO list below is a general plan of what I (we!) intend to do next. You can find the actual planned activities looking in the [Issues](https://github.com/Hrabal/TemPy/issues) of this repo.
- Create a ticketCreate a ticket
- Exclude checks
TODO found Open
Open
"""TempyList is a class factory, it works for both ul and ol lists (TODO: dl).
- Create a ticketCreate a ticket
- Exclude checks