From 2a0f5b763347c93e33457427af5fdc622b16a7e7 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 19 May 2024 04:32:44 +0000 Subject: [PATCH] fixed self.x --- hello.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/hello.py b/hello.py index 54e75a1..1fc1947 100644 --- a/hello.py +++ b/hello.py @@ -4,13 +4,12 @@ class GitHubActionsDemo(FlowSpec): @step def start(self): - self.x = 123 - print("Hello world!") + print("Hello GitHub Actions!") self.next(self.end) @step def end(self): - print(self.x) + print('fixed') if __name__ == "__main__": GitHubActionsDemo()