howdyho 2.0

This commit is contained in:
2021-05-13 19:31:44 +03:00
parent 85f146e951
commit 262680fa08
3 changed files with 11 additions and 15 deletions

View File

@@ -1,9 +1,6 @@
def main():
n = 0
__version__ = '2.0'
def while_true_print_howdyho_help():
while True:
print(f'хаудихо помоги ({n})')
n += 1
if __name__ == '__main__':
main()
print("Хаудихо помоги")

View File

@@ -1,5 +1,3 @@
from . import main
from howdyho import while_true_print_howdyho_help
if __name__ == '__main__':
main()
while_true_print_howdyho_help()

View File

@@ -1,13 +1,14 @@
[tool.poetry]
name = "howdyho"
version = "1.0"
description = "while True: print(\"хаудихо помоги\")"
authors = ["Voronin9032 <voronin9032n3@gmail.com>"]
version = "2.0"
description = ""
authors = ["voronin9032 <voronin9032n3@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[build-system]
requires = ["poetry-core>=1.0.0"]