Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
asikowitz committed Feb 3, 2025
1 parent 14e4a43 commit bec6e30
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,14 @@ def execute_graphql(
variables: Optional[Dict],
operation_name: Optional[str] = None,
format_exception: bool = True,
) -> Dict:
...
) -> Dict: ...

def get_aspect(
self,
entity_urn: str,
aspect_type: Type[Aspect],
version: int = 0,
) -> Optional[Aspect]:
...
) -> Optional[Aspect]: ...


class EntityVersioningAPI(DataHubGraphProtocol):
Expand Down
2 changes: 1 addition & 1 deletion smoke-test/tests/entity_versioning/test_versioning.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import pytest

from datahub.emitter.mcp import MetadataChangeProposalWrapper
from datahub.ingestion.graph.client import DataHubGraph
from datahub.metadata.schema_classes import (
Expand All @@ -7,7 +8,6 @@
VersionSetPropertiesClass,
)
from datahub.metadata.urns import DatasetUrn, VersionSetUrn

from tests.consistency_utils import wait_for_writes_to_sync

VERSION_SET_URN = VersionSetUrn("12345678910", DatasetUrn.ENTITY_TYPE).urn()
Expand Down

0 comments on commit bec6e30

Please sign in to comment.