Skip to content

Commit

Permalink
build: update references
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-nelson-uiuc committed Nov 30, 2024
1 parent 9b73b67 commit db34d7a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions src/tidy_tools/frame/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from tidy_tools.frame.context import tidycontext as tidycontext
from tidy_tools.frame.dataframe import TidyDataFrame as TidyDataFrame
from tidy_tools.frame.workflow import TidyWorkFlow as TidyWorkFlow
from tidy_tools.frame.workflow import tidyworkflow as tidyworkflow

__all__ = ["TidyDataFrame", "TidyWorkFlow"]
__all__ = ["TidyDataFrame", "tidyworkflow", "tidycontext"]
6 changes: 3 additions & 3 deletions src/tidy_tools/frame/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
from pyspark.sql import types as T


logger.level("ENTER", color="<green>")
logger.level("EXIT", color="<red>")
logger.level("ENTER", no=98, color="<green>")
logger.level("EXIT", no=99, color="<red>")


@define
Expand All @@ -22,7 +22,7 @@ class TidySnapshot:


@contextmanager
def tidy_context():
def tidycontext():
"""Define context manager for handling tidy operations."""
context = {"operation_log": [], "snapshots": []}
try:
Expand Down

0 comments on commit db34d7a

Please sign in to comment.