From c1a60fde8ac9914ad22a8e95c6fd064996d577e9 Mon Sep 17 00:00:00 2001 From: msramalho <19508417+msramalho@users.noreply.github.com> Date: Tue, 9 May 2023 11:26:19 +0100 Subject: [PATCH] fix: deprecates duration column --- example.orchestration.yaml | 1 - src/auto_archiver/core/context.py | 1 - src/auto_archiver/utils/gsheet.py | 1 - src/auto_archiver/utils/gworksheet.py | 1 - 4 files changed, 4 deletions(-) diff --git a/example.orchestration.yaml b/example.orchestration.yaml index f1d40ec..7e9a52a 100644 --- a/example.orchestration.yaml +++ b/example.orchestration.yaml @@ -49,7 +49,6 @@ configurations: timestamp: upload timestamp title: upload title text: textual content - duration: duration screenshot: screenshot hash: hash wacz: wacz diff --git a/src/auto_archiver/core/context.py b/src/auto_archiver/core/context.py index 2e03eee..f836c67 100644 --- a/src/auto_archiver/core/context.py +++ b/src/auto_archiver/core/context.py @@ -27,7 +27,6 @@ class ArchivingContext: @staticmethod def set(key, value, keep_on_reset: bool = False): - logger.debug(f"SET [{key}]={value}") ac = ArchivingContext.get_instance() ac.configs[key] = value if keep_on_reset: ac.keep_on_reset.add(key) diff --git a/src/auto_archiver/utils/gsheet.py b/src/auto_archiver/utils/gsheet.py index 0fec7f9..336f5c1 100644 --- a/src/auto_archiver/utils/gsheet.py +++ b/src/auto_archiver/utils/gsheet.py @@ -34,7 +34,6 @@ class Gsheets(Step): 'timestamp': 'upload timestamp', 'title': 'upload title', 'text': 'text content', - 'duration': 'duration', 'screenshot': 'screenshot', 'hash': 'hash', 'wacz': 'wacz', diff --git a/src/auto_archiver/utils/gworksheet.py b/src/auto_archiver/utils/gworksheet.py index 49c195f..7dbc774 100644 --- a/src/auto_archiver/utils/gworksheet.py +++ b/src/auto_archiver/utils/gworksheet.py @@ -18,7 +18,6 @@ class GWorksheet: 'thumbnail_index': 'thumbnail index', 'timestamp': 'upload timestamp', 'title': 'upload title', - 'duration': 'duration', 'screenshot': 'screenshot', 'hash': 'hash', 'wacz': 'wacz',