From 427264aeb5fd429e0f3920249d6170499fbff97f Mon Sep 17 00:00:00 2001 From: Silke Hofstra Date: Sat, 30 Mar 2024 18:05:10 +0100 Subject: [PATCH] fixup! ci/package_checks: Add check for included static libraries --- common/CI/package_checks.py | 1 + 1 file changed, 1 insertion(+) diff --git a/common/CI/package_checks.py b/common/CI/package_checks.py index 016d5b510472..ba62210951f9 100755 --- a/common/CI/package_checks.py +++ b/common/CI/package_checks.py @@ -86,6 +86,7 @@ def active(self) -> bool: return (self.start is not None and now > self.start and (self.end is None or now < self.end)) + @dataclass class StaticLibsConfig: """Configuration for the 'StaticLibs' check."""