libmsym
libmsym copied to clipboard
PEP8 code refactoring
Made changes in the code to make it PEP8 compatible, changed .gitignore to ignore eggfiles from python build and Replaced creation of strings via overloaded + operator with the format function.
Example:
give_message = "Must provide an array of length {}".format
raise ValueError(give_message(len(self.basis_functions)))
instead of:
raise ValueError("Must provide an array of length " + str(len(self.basis_functions)))