mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-06 05:23:58 -06:00
9 lines
176 B
Python
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
|