Skip to content

Commit

Permalink
Register Python fprint integrity checks
Browse files Browse the repository at this point in the history
  • Loading branch information
aurambaj committed Jun 24, 2024
1 parent f434c6b commit 67203a9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@ public enum IntegrityCheckerType {
ELLIPSIS,
BACKQUOTE,
EMPTY_TARGET_NOT_EMPTY_SOURCE,
MARKDOWN_LINKS;
MARKDOWN_LINKS,
PYTHON_FPRINT;
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ public enum IntegrityCheckerType {
ELLIPSIS(EllipsisIntegrityChecker.class.getName()),
BACKQUOTE(BackquoteIntegrityChecker.class.getName()),
EMPTY_TARGET_NOT_EMPTY_SOURCE(EmptyTargetNotEmptySourceIntegrityChecker.class.getName()),
MARKDOWN_LINKS(MarkdownLinkIntegrityChecker.class.getName());
MARKDOWN_LINKS(MarkdownLinkIntegrityChecker.class.getName()),
PYTHON_FPRINT(MarkdownLinkIntegrityChecker.class.getName());;

String className;

Expand Down

0 comments on commit 67203a9

Please sign in to comment.