Another possible typo in the metaflow book? On pag...
# ask-metaflow
f
Another possible typo in the metaflow book? On page 256 we have
Save the code in taxi_regression.py. If you ran TaxiETLFlow previously, you can run the flow like this:
Copy code
# python taxi_regression.py –environment=conda run –use_ctas_data=True
Shouldn't this script be
Copy code
python taxi_regression.py --environment=conda run --use_ctas_data True
?
1
v
yes, it should be
--environment
with two dashes. Unfortunately typesetting sometimes seems to interpret
--
as a long dash
- good catch! It works with or without the equal sign before
True
👍 1