Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
perlitz committed Feb 14, 2025
1 parent b6a3ed0 commit 762d1ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/unitxt/db_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,11 +288,11 @@ def get_table_schema(
self,
) -> str:
"""Retrieves the schema of a database."""
cur_api_url = f"{self.api_url}/datasource/{self.database_id}"
cur_api_url = f"{self.api_url}/datasources/{self.database_id}"
response = requests.get(
cur_api_url,
headers=self.headers,
verify=True,
verify=False,
timeout=self.timeout,
)
if response.status_code == 200:
Expand Down

0 comments on commit 762d1ef

Please sign in to comment.