meson_to_hermetic: Code health / lint update

Test: Run build-<platform>-turnip.sh
Change-Id: Id73cc43050ceb1593da0a1813cd02c0aeae43c09
This commit is contained in:
= 2024-08-27 23:29:56 +00:00
parent 7986ec013e
commit e48fd1ffe3
3 changed files with 2 additions and 3 deletions

View file

@ -1,4 +1,4 @@
# meson-to-hermetic: automated build system generation # meson_to_hermetic: automated build system generation
Goal: ease the integration of Mesa as a component inside larger projects like Goal: ease the integration of Mesa as a component inside larger projects like
Android (AOSP). Android (AOSP).

View file

@ -127,7 +127,7 @@ class Dependency:
return hash(self.unique_id) return hash(self.unique_id)
def __eq__(self, other): def __eq__(self, other):
return self.unique_id == other._unique_id return self.unique_id == other.unique_id
class CommandReturn: class CommandReturn:

View file

@ -26,7 +26,6 @@ import meson_impl as impl
import tomllib import tomllib
import re import re
from abc import ABC
from pathlib import Path from pathlib import Path
# A map that holds the build-system to build file # A map that holds the build-system to build file