Some style modifications can be done to the codebase. - Use consistent string quotations. i.e `'some string'` vs `"some string"`. - Use modern string formatting. i.e use `string.format()` method instead of `%` notation. - Any other necessary style modification, possibly making it comply with `PEP8`.
Some style modifications can be done to the codebase.
'some string'vs"some string".string.format()method instead of%notation.PEP8.