Skip to content

Commit

Permalink
Keep 'ci/dependency-updates' up-to-date with 'main'
Browse files Browse the repository at this point in the history
  • Loading branch information
TEAM4-0 committed Oct 26, 2023
2 parents 84b84c2 + 2e2b8a4 commit 63853cb
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 13 deletions.
3 changes: 0 additions & 3 deletions oteapi_optimade/dlite/parse.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""OTEAPI strategy for parsing OPTIMADE structure resources to DLite instances."""
import logging
import sys
from pathlib import Path
from typing import TYPE_CHECKING

Expand All @@ -22,8 +21,6 @@


LOGGER = logging.getLogger("oteapi_optimade.dlite")
LOGGER.setLevel(logging.DEBUG)
LOGGER.addHandler(logging.StreamHandler(sys.stdout))


@dataclass
Expand Down
1 change: 0 additions & 1 deletion oteapi_optimade/models/custom_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ class OPTIMADEParts(TypedDict, total=False):
_OPTIMADE_ENDPOINT_REGEX = None

LOGGER = logging.getLogger("oteapi_optimade.models")
LOGGER.setLevel(logging.DEBUG)


def optimade_base_url_regex() -> "Pattern[str]":
Expand Down
3 changes: 0 additions & 3 deletions oteapi_optimade/strategies/filter.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Demo filter strategy."""
import logging
import sys
from typing import TYPE_CHECKING

from oteapi.models import SessionUpdate
Expand All @@ -15,8 +14,6 @@


LOGGER = logging.getLogger("oteapi_optimade.strategies")
LOGGER.setLevel(logging.DEBUG)
LOGGER.addHandler(logging.StreamHandler(sys.stdout))


@dataclass
Expand Down
3 changes: 0 additions & 3 deletions oteapi_optimade/strategies/parse.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"""Demo strategy class for text/json."""
import json
import logging
import sys
from typing import TYPE_CHECKING

from optimade.models import ErrorResponse, Success
Expand All @@ -21,8 +20,6 @@


LOGGER = logging.getLogger("oteapi_optimade.strategies")
LOGGER.setLevel(logging.DEBUG)
LOGGER.addHandler(logging.StreamHandler(sys.stdout))


@dataclass
Expand Down
3 changes: 0 additions & 3 deletions oteapi_optimade/strategies/resource.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""OPTIMADE resource strategy."""
import logging
import sys
from typing import TYPE_CHECKING
from urllib.parse import parse_qs

Expand Down Expand Up @@ -40,8 +39,6 @@


LOGGER = logging.getLogger("oteapi_optimade.strategies")
LOGGER.setLevel(logging.DEBUG)
LOGGER.addHandler(logging.StreamHandler(sys.stdout))


def use_dlite(access_service: str, use_dlite_flag: bool) -> bool:
Expand Down

0 comments on commit 63853cb

Please sign in to comment.