Skip to content

Commit

Permalink
linter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaushik Ravichandran committed Nov 16, 2023
1 parent 7554ef9 commit add43c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions evadb/third_party/databases/hackernews/hackernews_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
# limitations under the License.
import json

import github
import pandas as pd
import requests

Expand All @@ -27,7 +26,8 @@


class HackernewsSearchHandler(DBHandler):
connection = lambda x: requests.get("https://www.google.com/").status_code == 200
def connection ():
return requests.get("https://www.google.com/").status_code == 200

def __init__(self, name: str, **kwargs):
"""
Expand Down

0 comments on commit add43c1

Please sign in to comment.