Problem
ArticleIngestor._REDIRECT_KEY in article.py:21 depends on try/except import at module level. If the import changes, the class has stale state.
Solution
Compute the key lazily or use a module-level constant set once correctly.
Difficulty: Easy
Problem
ArticleIngestor._REDIRECT_KEYinarticle.py:21depends on try/except import at module level. If the import changes, the class has stale state.Solution
Compute the key lazily or use a module-level constant set once correctly.
Difficulty: Easy