Просмотр исходного кода

removed debugging statement

Contributes to CURA-11014
jellespijker 1 год назад
Родитель
Сommit
658f270fe1
1 измененных файлов с 0 добавлено и 1 удалено
  1. 0 1
      printer-linter/src/printerlinter/linters/directory.py

+ 0 - 1
printer-linter/src/printerlinter/linters/directory.py

@@ -20,7 +20,6 @@ class Directory(Linter):
     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",