(self, file)
| 52 | ) |
| 53 | |
| 54 | def copyright_notice(self, file): |
| 55 | return "".join(self.copyright_notice_lines(file)) |
| 56 | |
| 57 | def copyright_notice_lines(self, file): |
| 58 | return self.dotnet(file) if file.endswith("cs") else self._prefix + self.commented_notice_lines |
no test coverage detected