Skip to content

Commit 2b57fd2

Browse files
Small fix in the dataframes decorator
1 parent 2b052f5 commit 2b57fd2

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

v6-session-basics/tmp.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,4 +163,8 @@ def dataframes() -> callable:
163163
added to the front of the argument list. This data will be read from the
164164
databases that the user who creates the task provides.
165165
"""
166-
return dataframe("many")
166+
167+
def decorator(func: callable) -> callable:
168+
return dataframe("many")(func)
169+
170+
return decorator

0 commit comments

Comments
 (0)