python/woodpeckerpy/main.py
RealStickman 8e60a643df
Some checks failed
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/deploy Pipeline was successful
ci/woodpecker/push/linting Pipeline failed
Purposefully wrong type
2022-09-12 18:36:11 +02:00

15 lines
280 B
Python

#!/usr/bin/env python3
class main:
def __init__(self):
print("Hello CICD")
string = "this is an unmarked string"
integer = 7
print(string)
print(integer)
def wronttype(self) -> None:
string = "test"
return string