MCPcopy Create free account
hub / github.com/FastLED/FastLED / has_drift

Method has_drift

ci/check_backend_flag_drift.py:135–147  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

133 includes_only_in_pio: list[str] = field(default_factory=list)
134
135 def has_drift(self) -> bool:
136 return any(
137 (
138 self.cc_only_in_fbuild,
139 self.cc_only_in_pio,
140 self.cxx_only_in_fbuild,
141 self.cxx_only_in_pio,
142 self.defines_only_in_fbuild,
143 self.defines_only_in_pio,
144 self.includes_only_in_fbuild,
145 self.includes_only_in_pio,
146 )
147 )
148
149
150def _should_ignore_flag(flag: str) -> bool:

Calls 1

anyFunction · 0.85