Skip to content

Commit

Permalink
Remove _api.py file
Browse files Browse the repository at this point in the history
  • Loading branch information
schloerke committed Nov 12, 2024
1 parent 194f07b commit c5088a9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 281 deletions.
278 changes: 0 additions & 278 deletions src/posit/connect/_api.py

This file was deleted.

4 changes: 2 additions & 2 deletions src/posit/connect/content.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
)

from . import tasks
from ._api import ApiDictEndpoint, JsonifiableDict
from ._active import ActiveDict, JsonifiableDict
from ._typing_extensions import NotRequired, Required, TypedDict, Unpack
from .bundles import Bundles
from .context import Context
Expand All @@ -43,7 +43,7 @@ def _assert_content_guid(content_guid: str):
assert len(content_guid) > 0, "Expected 'content_guid' to be non-empty"


class ContentItemRepository(ApiDictEndpoint):
class ContentItemRepository(ActiveDict):
"""
Content items GitHub repository information.
Expand Down
2 changes: 1 addition & 1 deletion tests/posit/connect/test_api_endpoint.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import pytest

from posit.connect._api import ReadOnlyDict
from posit.connect._active import ReadOnlyDict


class TestApiEndpoint:
Expand Down

0 comments on commit c5088a9

Please sign in to comment.