mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-25 23:53:56 -06:00
Use Diagnostic Generator super for Meshes
This commit is contained in:
parent
f74a40bed0
commit
4f4523c4b7
1 changed files with 2 additions and 1 deletions
|
@ -1,9 +1,10 @@
|
||||||
from typing import Iterator
|
from typing import Iterator
|
||||||
|
|
||||||
from ..diagnostic import Diagnostic
|
from ..diagnostic import Diagnostic
|
||||||
|
from .diagnostic_generator import DiagnosticGenerator
|
||||||
|
|
||||||
|
|
||||||
class Meshes:
|
class Meshes(DiagnosticGenerator):
|
||||||
def __init__(self, file, settings) -> None:
|
def __init__(self, file, settings) -> None:
|
||||||
super().__init__(file, settings)
|
super().__init__(file, settings)
|
||||||
self._max_file_size = self._settings.get("diagnostic-mesh-file-size", 1e6)
|
self._max_file_size = self._settings.get("diagnostic-mesh-file-size", 1e6)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue