Skip to content
Permalink
Browse files
Fix PEP8
  • Loading branch information
aa9863 committed Aug 13, 2020
1 parent 192b53f commit b41350a50b3e3d12da4b1ef6b09f23ef3e87cbfd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
@@ -151,7 +151,6 @@ class MarkdownParser():
if "total" in self.header["marks"]:
if totalMarks != self.header["marks"]["total"]:
self.log.warning("Marks Mismatch. Provided {0} Calculated {1}".format(self.header["marks"]["total"], totalMarks))

self.header["marks"]["total"] = totalMarks

return True

This file was deleted.

@@ -1,3 +1,10 @@
"""
Setup file to install the codez
python setup.py install
python setup.py test
"""

from setuptools import setup, find_packages

requires = [

0 comments on commit b41350a

Please sign in to comment.