That's with ```@dataclass(frozen=True) class JavaT...
# development
b
That's with
Copy code
@dataclass(frozen=True)
class JavaTestFieldSet(TestFieldSet):
    required_fields = (JavaTestsSources,)

    sources: JavaTestsSources
h
Are you using from __future import annotations in your implementation? That breaks FieldSets 🤦‍♂️ Sorry for the gotcha
b
Oh yup. For which module? Just where I define the FieldSet?
h
You can and should use it everywhere except for files that define FieldSets (And I should fix this)
b
(Looks like yeah, just the FieldSet)