Skip to content

Commit

Permalink
fix python lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jonmmease committed Oct 19, 2024
1 parent 5f086e7 commit 7c035b5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 0 additions & 1 deletion vegafusion-python/vegafusion/runtime.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from __future__ import annotations

import json
import sys
from types import ModuleType
from typing import TYPE_CHECKING, Any, Literal, TypedDict, Union, cast
Expand Down
6 changes: 4 additions & 2 deletions vegafusion-python/vegafusion/utils.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
from __future__ import annotations

import json
from typing import Any, TypedDict, cast

from ._vegafusion import (
get_column_usage as _get_column_usage,
build_pre_transform_spec_plan as _build_pre_transform_spec_plan,
)
import json
from ._vegafusion import (
get_column_usage as _get_column_usage,
)


def get_column_usage(spec: dict[str, Any]) -> dict[str, list[str] | None]:
Expand Down

0 comments on commit 7c035b5

Please sign in to comment.