Skip to content

Commit

Permalink
Merge pull request #27 from harrymconner/fix/raw-python-equivalent-typo
Browse files Browse the repository at this point in the history
add missing parenthesis in raw python shell equivalent
  • Loading branch information
epogrebnyak authored May 25, 2024
2 parents 14dfcfc + f3ba4cd commit c39b6f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion justpath/oneliners.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def print(self):
bash="echo $PATH",
cmd="echo %PATH%",
ps="echo $Env:PATH",
python="import os; print(os.environ['PATH']",
python="import os; print(os.environ['PATH'])",
)

BY_LINE = OneLiner(
Expand Down

0 comments on commit c39b6f7

Please sign in to comment.