(self)
| 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 | |
| 150 | def _should_ignore_flag(flag: str) -> bool: |