Skip to content

Commit 29be8bd

Browse files
authored
Merge pull request #60 from de-sh/develop
CI: remove unused imports
2 parents 6a00ee3 + ad9e140 commit 29be8bd

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

samples/doc_writer_sample.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
"""Sample to create Hydra APIDocumentation using doc_writer."""
22

33
from hydra_python_core.doc_writer import (HydraDoc, HydraClass, HydraClassProp, HydraClassOp,
4-
HydraStatus, HydraError, HydraLink,HydraCollection)
4+
HydraStatus, HydraLink,HydraCollection)
55
from typing import Any, Dict, Union
6-
from urllib.parse import urljoin
76

87
# Creating the HydraDoc object, this is the primary class for the Doc
98
API_NAME = "api" # Name of the API, will serve as EntryPoint

tests/test_doc_maker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from pyld import jsonld
44
import requests
55

6-
from unittest.mock import patch, ANY
6+
from unittest.mock import patch
77
from hydra_python_core import doc_maker, doc_writer
88
from samples import doc_writer_sample_output
99

0 commit comments

Comments
 (0)