add local scope to shell
All checks were successful
build
check_for_changed_version

This commit is contained in:
Joe Kaufeld 2023-04-23 16:04:23 -04:00
parent 52e563c4dd
commit fc2e10f9ad
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "src" name = "src"
version = "0.2.0" version = "0.2.1"
description = "" description = ""
authors = ["Joe Kaufeld <opensource@joekaufeld.com>"] authors = ["Joe Kaufeld <opensource@joekaufeld.com>"]

View File

@ -39,7 +39,7 @@ def main(ctx, update):
pretty.install() # type: ignore pretty.install() # type: ignore
install() # traceback handler install() # traceback handler
code.interact(banner, None) code.interact(local=globals(), banner=banner)
sys.exit() sys.exit()