Skip to content

Commit

Permalink
add noqa
Browse files Browse the repository at this point in the history
  • Loading branch information
marcocapozzoli committed Mar 11, 2024
1 parent 9201422 commit 76ef062
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hyperon_das/query_engines.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import json
from abc import ABC, abstractmethod
from http import HTTPStatus
from http import HTTPStatus # noqa: F401
from typing import Any, Dict, Iterator, List, Optional, Set, Tuple, Union

from hyperon_das_atomdb import WILDCARD
from hyperon_das_atomdb.exceptions import AtomDoesNotExist, LinkDoesNotExist, NodeDoesNotExist
from requests import sessions
from requests.exceptions import (
from requests.exceptions import ( # noqa: F401
ConnectionError,
HTTPError,
JSONDecodeError,
Expand All @@ -32,7 +32,7 @@
UnexpectedQueryFormat,
)
from hyperon_das.logger import logger
from hyperon_das.utils import Assignment, QueryAnswer, get_package_version
from hyperon_das.utils import Assignment, QueryAnswer, get_package_version # noqa: F401


class QueryEngine(ABC):
Expand Down

0 comments on commit 76ef062

Please sign in to comment.