Skip to content

Commit

Permalink
Fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Kuethe committed Sep 24, 2024
1 parent 29a409f commit 8e54aed
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions pytabulator/tabulator.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
from __future__ import annotations

from typing import Any

from pandas import DataFrame

from ._utils import df_to_dict, as_camel_dict_recursive
from typing import Self, Any
try:
from typing_extensions import Self
except ImportError:
from typing import Self

from .tabulator_options import TabulatorOptions
from .utils import create_columns
from ._utils import as_camel_dict_recursive, df_to_dict
from .editors import Editor
from .formatters import Formatter
from .tabulator_options import TabulatorOptions
from .utils import create_columns


class Tabulator(object):
"""Tabulator
Expand Down

0 comments on commit 8e54aed

Please sign in to comment.