add __main__.py to allow running with python -m
also
#1
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "whosit/misc-scripts:master"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Running with
python post_office_jinja/__init__.py
requires adding a current directory toPYTHONPATH
, which is not default.With this, you can do
python -m post_office_jinja
which is kinda more idiomatic.python -m
also ec257ad665Thanks!