Merge pull request #156 from rfschmid:rename-main-__main__

Rename main to __main__
This commit is contained in:
pdxlocations
2025-04-02 21:14:15 -07:00
committed by GitHub
3 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -6,8 +6,8 @@
"type": "debugpy",
"request": "launch",
"cwd": "${workspaceFolder}",
"module": "contact.main",
"module": "contact.__main__",
"args": []
}
]
}
}
+1 -1
View File
@@ -21,4 +21,4 @@ requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
contact = "contact.main:start"
contact = "contact.__main__:start"