Add untyped variables
All checks were successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/deploy Pipeline was successful
ci/woodpecker/push/linting Pipeline was successful

This commit is contained in:
RealStickman 2022-09-12 17:55:15 +02:00
parent 8c71057fd1
commit 73b9b7ab5f

View File

@ -4,3 +4,7 @@
class main:
def __init__(self):
print("Hello CICD")
string = "this is an unmarked string"
integer = 7
print(string)
print(integer)