From 7a0edb8765d7d2a06613fdc26d89aca50168f1bf Mon Sep 17 00:00:00 2001 From: Marcin Rudolf Date: Tue, 19 Sep 2023 21:52:54 +0200 Subject: [PATCH] Revert "avoid import/export first word in docstrings" This reverts commit f313c6bd7ca5db2c95c50a8a4c6dbcebd68d7638. --- dlt/common/storages/configuration.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlt/common/storages/configuration.py b/dlt/common/storages/configuration.py index 096988a98f..0b88f3b010 100644 --- a/dlt/common/storages/configuration.py +++ b/dlt/common/storages/configuration.py @@ -14,8 +14,8 @@ @configspec class SchemaStorageConfiguration(BaseConfiguration): schema_volume_path: str = None # path to volume with default schemas - import_schema_path: Optional[str] = None # the import schema from external location - export_schema_path: Optional[str] = None # the export schema to external location + import_schema_path: Optional[str] = None # import schema from external location + export_schema_path: Optional[str] = None # export schema to external location external_schema_format: TSchemaFileFormat = "yaml" # format in which to expect external schema external_schema_format_remove_defaults: bool = True # remove default values when exporting schema