Skip to content

Commit a1c0538

Browse files
committed
ClassificationHDFTableCopy --> generic SmallHDFTableCopy now that classification-specific functions moved to atlas_core
1 parent d714fc5 commit a1c0538

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pandas_to_postgres/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from .copy_df import DataFrameCopy
2-
from .copy_hdf import HDFTableCopy, ClassificationHDFTableCopy, BigHDFTableCopy
2+
from .copy_hdf import HDFTableCopy, SmallHDFTableCopy, BigHDFTableCopy
33
from .utilities import (
44
logger,
55
HDFMetadata,

pandas_to_postgres/copy_hdf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def hdf_to_pg(self, data_formatters=[cast_pandas], data_formatter_kwargs={}):
8484
logger.info(f"All chunks copied ({self.rows} rows)")
8585

8686

87-
class ClassificationHDFTableCopy(HDFTableCopy):
87+
class SmallHDFTableCopy(HDFTableCopy):
8888
def __init__(
8989
self,
9090
hdf_tables: List[str],

0 commit comments

Comments
 (0)