Skip to content

Commit

Permalink
fix(__main__.py): fix shell false bug
Browse files Browse the repository at this point in the history
  • Loading branch information
aadhithya committed May 16, 2022
1 parent eaee4c9 commit 5efcd49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rajinipp/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ def run(file_path: str, debug: bool = False):

@app.command()
def shell():
print(f"rajini++ v{__version__}")
print(f"rajini++ v{'0.2.0'}")
while True:
code_line = input("rajinipp>> ")
output = runner.eval(code_line)
if output:
if output is not None:
print(output)


Expand Down

0 comments on commit 5efcd49

Please sign in to comment.