Skip to content

Commit

Permalink
removed debugging statement
Browse files Browse the repository at this point in the history
Contributes to CURA-11014
  • Loading branch information
jellespijker committed Sep 21, 2023
1 parent b401ece commit 658f270
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion printer-linter/src/printerlinter/linters/directory.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 658f270

Please sign in to comment.