diff --git a/content/blog/python-check-submodule-load.md b/content/blog/python-check-submodule-load.md index 68db132..49825c2 100644 --- a/content/blog/python-check-submodule-load.md +++ b/content/blog/python-check-submodule-load.md @@ -1,7 +1,7 @@ --- title: "Quick Python: Check Submodule Load" date: 2022-12-01T21:12:03-05:00 -draft: true +draft: false tags: ["Python"] math: false --- @@ -73,4 +73,4 @@ Notice the `+` behind the second submodule. According to the man page for `git s The existence of the `+` would make this check fail. However, no prefixes will make the check succeed. -By executing this function within the repositories `setup.py`, it verifies that the needed dependencies are checked out and clean before installing the python package. Checks like these make python packages feel a little more stable. \ No newline at end of file +By executing this function within the repositories `setup.py`, it verifies that the needed dependencies are checked out and clean before installing the python package. Checks like these make python packages feel a little more stable.