Skip to content

Commit

Permalink
formatted with trunk
Browse files Browse the repository at this point in the history
  • Loading branch information
nh916 committed Sep 27, 2023
1 parent f838f4a commit eb4968e
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,3 @@ def cript_api():
@pytest.fixture(autouse=True)
def inject_doctest_namespace(doctest_namespace, cript_api):
doctest_namespace["api"] = cript_api

2 changes: 1 addition & 1 deletion src/cript/nodes/primary_nodes/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def __init__(self, name: str, collection: Optional[List[Collection]] = None, mat
>>> import cript
>>> my_project = cript.Project(name="my Project name")
Parameters
----------
name: str
Expand Down
2 changes: 1 addition & 1 deletion tests/api/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
import requests

import cript
from conftest import HAS_INTEGRATION_TESTS_ENABLED
from cript.api.exceptions import InvalidVocabulary
from cript.api.paginator import Paginator
from cript.nodes.exceptions import CRIPTNodeSchemaError
from conftest import HAS_INTEGRATION_TESTS_ENABLED


def test_api_with_invalid_host() -> None:
Expand Down
2 changes: 1 addition & 1 deletion tests/utils/integration_test_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
from deepdiff import DeepDiff

import cript
from cript.nodes.uuid_base import UUIDBaseNode
from conftest import HAS_INTEGRATION_TESTS_ENABLED
from cript.nodes.uuid_base import UUIDBaseNode


def save_integration_node_helper(cript_api: cript.API, project_node: cript.Project):
Expand Down

0 comments on commit eb4968e

Please sign in to comment.