diff --git a/README.rst b/README.rst index b4b2cc7..5b1c49f 100644 --- a/README.rst +++ b/README.rst @@ -23,10 +23,10 @@ If an error occurs, the ‘error’ attribute is set to True and the ‘error_me ==== TYPICAL IMPLEMENTATION ==== from pypowerworld import pypowerworld - -case_path = r‘somepathsomecase.pwb’ pw = pypowerworld(case_path) pw.solve() - +case_path = r‘somepathsomecase.pwb’ +pw = pypowerworld(case_path) +pw.solve() if pw.error: -print(“Error encountered solving power flow: %s” % pw.error_message) + print(“Error encountered solving power flow: %s” % pw.error_message) else: -print(“The case was solved using the Newton-Raphson method.”) \ No newline at end of file + print(“The case was solved using the Newton-Raphson method.”) \ No newline at end of file diff --git a/pypowerworld/__version__.py b/pypowerworld/__version__.py index 895479e..5cebba8 100644 --- a/pypowerworld/__version__.py +++ b/pypowerworld/__version__.py @@ -6,6 +6,6 @@ """ -VERSION = (0, 3, 4) +VERSION = (0, 3, 6) __version__ = '.'.join(map(str, VERSION)) \ No newline at end of file