Merge pull request #18 from Scinawa/master

correct line indentation, previously reulting in syntax error
master
Randall Degges 2015-11-16 12:17:10 -08:00
commit d4b1f0b070
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ class AGI:
sys.stderr.write('\n')
def _quote(self, string):
""" provides double quotes to string, converts int/bool to string """
""" provides double quotes to string, converts int/bool to string """
if isinstance(string, int):
string = str(string)
if isinstance(string, float):