From b73c8368910e8df13de96c075f4400bb77b52ec7 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 19 May 2024 04:26:50 +0000 Subject: [PATCH] fix flow name --- hello.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hello.py b/hello.py index 4ecfad2..54e75a1 100644 --- a/hello.py +++ b/hello.py @@ -1,6 +1,6 @@ from metaflow import FlowSpec, step, card, schedule -class HelloFlow(FlowSpec): +class GitHubActionsDemo(FlowSpec): @step def start(self): @@ -13,4 +13,4 @@ def end(self): print(self.x) if __name__ == "__main__": - HelloFlow() + GitHubActionsDemo()