From 658f270fe103b427b333d83b8bef84d225b1e3f8 Mon Sep 17 00:00:00 2001 From: jellespijker Date: Fri, 22 Sep 2023 01:30:00 +0200 Subject: [PATCH] removed debugging statement Contributes to CURA-11014 --- printer-linter/src/printerlinter/linters/directory.py | 1 - 1 file changed, 1 deletion(-) diff --git a/printer-linter/src/printerlinter/linters/directory.py b/printer-linter/src/printerlinter/linters/directory.py index 1e81be4ded4..4ca299dad71 100644 --- a/printer-linter/src/printerlinter/linters/directory.py +++ b/printer-linter/src/printerlinter/linters/directory.py @@ -20,7 +20,6 @@ def check(self) -> Iterator[Diagnostic]: def checkForDotInDirName(self) -> Iterator[Diagnostic]: """ Check if there is a dot in the directory name, MacOS has trouble signing and notarizing otherwise """ if any("." in p for p in self._file.parent.parts): - print("bghkgh") yield Diagnostic( file = self._file, diagnostic_name = "diagnostic-resources-macos-app-directory-name",