We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
-e
-E
1 parent 5070ea1 commit 972f47fCopy full SHA for 972f47f
pysrc/juliacall/__main__.py
@@ -10,7 +10,7 @@
10
parser.add_argument('--history-file', choices=['yes', 'no'], default='yes', help='Load or save history')
11
parser.add_argument('--preamble', type=Path, help='Code to be included before the REPL starts')
12
args = parser.parse_args()
13
- assert not (args.eval is not None and args.print is not None)
+ assert not (args.eval is not None and args.print is not None), "Cannot specify both -e/--eval and -E/--print"
14
if args.eval is not None:
15
from juliacall import Main
16
Main.seval(args.eval)
0 commit comments