Cura/printer-linter/src/printerlinter/linters/profile.py
Joey de l'Arago e83ed933e2 Update readme with instruction for developing.
Change DiagnosticGenerator -> Linter since this is much easier to understand.
2022-11-23 17:52:33 +01:00

9 lines
176 B
Python

from typing import Iterator
from ..diagnostic import Diagnostic
from .linter import Linter
class Profile(Linter):
def check(self) -> Iterator[Diagnostic]:
yield