From 20e68903b60a9282359d1db6171de2e72381f980 Mon Sep 17 00:00:00 2001 From: Steinthor Palsson Date: Tue, 14 May 2024 08:50:01 -0400 Subject: [PATCH] Remove dropped_tables_filename --- dlt/common/storages/load_package.py | 1 - 1 file changed, 1 deletion(-) diff --git a/dlt/common/storages/load_package.py b/dlt/common/storages/load_package.py index 8f551426bd..e7c7f7a164 100644 --- a/dlt/common/storages/load_package.py +++ b/dlt/common/storages/load_package.py @@ -308,7 +308,6 @@ class PackageStorage: LOAD_PACKAGE_STATE_FILE_NAME = ( # internal state of the load package, will not be synced to the destination "load_package_state.json" ) - DROPPED_TABLES_FILE_NAME = "dropped_tables.json" def __init__(self, storage: FileStorage, initial_state: TLoadPackageStatus) -> None: """Creates storage that manages load packages with root at `storage` and initial package state `initial_state`"""