commit f3d1280ebeafd254c4e15f12ca8ee3e98cd96df1
parent 285361cd91279250da280a71ef863788351867e9
Author: Erik Loualiche <eloualiche@users.noreply.github.com>
Date: Mon, 23 Feb 2026 16:55:07 -0600
Merge pull request #9 from LouLouLibs/fix/ruff-lint
Fix unused imports flagged by ruff
Diffstat:
4 files changed, 2 insertions(+), 5 deletions(-)
diff --git a/python/src/wrds_dl/cli.py b/python/src/wrds_dl/cli.py
@@ -3,13 +3,12 @@
from __future__ import annotations
import json
-import sys
import click
import psycopg
from wrds_dl.config import apply_credentials
-from wrds_dl.db import build_query, connect, dsn_from_env, quote_ident, table_meta
+from wrds_dl.db import build_query, connect, dsn_from_env, table_meta
@click.group()
diff --git a/python/src/wrds_dl/export.py b/python/src/wrds_dl/export.py
@@ -3,7 +3,6 @@
from __future__ import annotations
import csv
-import sys
from decimal import Decimal
from typing import Callable
diff --git a/python/tests/test_export.py b/python/tests/test_export.py
@@ -2,7 +2,7 @@
import pyarrow as pa
-from wrds_dl.export import _PG_OID_TO_ARROW, _arrow_type_for_oid, _format_row
+from wrds_dl.export import _arrow_type_for_oid, _format_row
class TestArrowTypeForOid:
diff --git a/python/tests/test_integration.py b/python/tests/test_integration.py
@@ -11,7 +11,6 @@ from __future__ import annotations
import hashlib
import os
-import shutil
import subprocess
import tempfile
from pathlib import Path