Skip to content

Commit

Permalink
Update interpreter.py
Browse files Browse the repository at this point in the history
  • Loading branch information
10xJSChad authored Jul 13, 2021
1 parent 56f9017 commit a3a71df
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ async def initialize(script):

async def parseCommand(cmd):
cmd = stripSpaces(cmd)
print(cmd)
global funcName, funcCode, recordCode, skip
cmdUnchanged = cmd
cmd = cmd.split("//")[0]
Expand Down Expand Up @@ -103,4 +102,4 @@ async def parseCode(codeToParse, runOnce=False):

sys.path.append('/bulbScript_functions')
sys.path.append('/user_functions')
asyncio.run(initialize(open("bulbScript_scripts/" + config.loadedScript, "r")))
asyncio.run(initialize(open("bulbScript_scripts/" + config.loadedScript, "r")))

0 comments on commit a3a71df

Please sign in to comment.