From 5836a79e0c7e0c1e98b2cd46adddc2351e2a1cde Mon Sep 17 00:00:00 2001
From: edvs19 <edvs19@inf.ufpr.br>
Date: Thu, 6 Mar 2025 14:29:51 -0300
Subject: [PATCH] teste

---
 teste_dag.py | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/teste_dag.py b/teste_dag.py
index 97d4ca9..d0d3815 100644
--- a/teste_dag.py
+++ b/teste_dag.py
@@ -47,12 +47,8 @@ repo_home = '/opt/airflow/dags/repo'
 
 
 @dag
-def teste(
-  params={
-      "input_file" : Param(type=str)
-    }  
-):
-  print(params.input_file)
+def teste():
+  print("Hello world")
 
 @dag
 def run_tests():
@@ -63,5 +59,5 @@ def run_tests():
   )
 
 
-dag2 = teste("parametro")
+dag2 = teste()
 # dag3 = run_tests()
-- 
GitLab