Skip to content

Commit

Permalink
fix pylint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Treesarj committed Oct 27, 2023
1 parent 8f54a0f commit 9ebbf6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions oteapi_dlite/strategies/parse_mpr.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""Strategy that parses an mpr file"""
from typing import Any, Dict, Optional

# pylint: disable=unused-argument,C0301,R0914
import dlite
import pandas as pd
import requests # type: ignore
Expand Down
1 change: 1 addition & 0 deletions oteapi_dlite/strategies/parse_txt.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""Strategy that parses text and return all associated download links."""
from typing import Any, Dict, Optional

# pylint: disable=unused-argument,C0206
import dlite
import requests # type: ignore
from oteapi.models import (
Expand Down

0 comments on commit 9ebbf6d

Please sign in to comment.