Skip to content

Commit 2a0f5b7

Browse files
committed
fixed self.x
1 parent b73c836 commit 2a0f5b7

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

hello.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@ class GitHubActionsDemo(FlowSpec):
44

55
@step
66
def start(self):
7-
self.x = 123
8-
print("Hello world!")
7+
print("Hello GitHub Actions!")
98
self.next(self.end)
109

1110
@step
1211
def end(self):
13-
print(self.x)
12+
print('fixed')
1413

1514
if __name__ == "__main__":
1615
GitHubActionsDemo()

0 commit comments

Comments
 (0)