Skip to content

Commit 3581399

Browse files
authored
Merge pull request #95 from PathwayCommons/fix-mypy-issue
Fix mypy issue in CI
2 parents 7229532 + 2dc1608 commit 3581399

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

semantic_search/demo.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import json
22
from typing import List
33

4-
import requests
4+
import requests # type: ignore
55
import streamlit as st
66
import validators
77

semantic_search/ncbi.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import logging
66
import time
77

8-
import requests
8+
import requests # type: ignore
99
from Bio import Medline
1010
from dotenv import load_dotenv
1111
from pydantic import BaseSettings

0 commit comments

Comments
 (0)