fix linting issues + make spec builder remove comments in container re-initialization part

This commit is contained in:
protolambda
2019-06-20 21:42:55 +02:00
parent b4ef672f87
commit 2d67717079
3 changed files with 18 additions and 4 deletions

View File

@@ -319,7 +319,7 @@ class BaseList(list, Elements):
def last(self):
# be explict about getting the last item, for the non-python readers, and negative-index safety
return self[len(self)-1]
return self[len(self) - 1]
class List(BaseList):