Skip to content

Commit

Permalink
refact(lint): Run lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yamadashy committed Oct 14, 2024
1 parent 0135354 commit 713cde3
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/core/file/fileManipulate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ const rtrimLines = (content: string): string =>
.map((line) => line.trimEnd())
.join('\n');


class BaseManipulator implements FileManipulator {
removeComments(content: string): string {
return content;
Expand Down Expand Up @@ -146,7 +145,6 @@ class PythonManipulator extends BaseManipulator {
return result;
}


removeComments(content: string): string {
let result = this.removeDocStrings(content);
result = this.removeHashComments(result);
Expand Down

0 comments on commit 713cde3

Please sign in to comment.