Skip to content
This repository has been archived by the owner on Jul 3, 2023. It is now read-only.

Fixes reusing_functions example #262

Merged
merged 1 commit into from
Dec 31, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion examples/reusing_functions/reusable_subdags.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import pandas as pd
import unique_users

from hamilton.function_modifiers import reuse, reuse_functions, value
from hamilton.experimental.decorators import reuse
from hamilton.experimental.decorators.reuse import reuse_functions
from hamilton.function_modifiers import value


def website_interactions() -> pd.DataFrame:
Expand Down