Skip to content
This repository has been archived by the owner on Jun 5, 2023. It is now read-only.

Commit

Permalink
build: Rename entry point
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Jan 7, 2023
1 parent 1f823fd commit 41a1001
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion flake8_opencontracting.py
Expand Up @@ -10,5 +10,5 @@ def _print(physical_line):
yield match.start(), f"FOC100 {match.group(1)}"


def logical(physical_line: Any) -> Generator[Tuple[int, str], None, None]:
def physical(physical_line: Any) -> Generator[Tuple[int, str], None, None]:
yield from _print(physical_line)
2 changes: 1 addition & 1 deletion setup.cfg
Expand Up @@ -46,4 +46,4 @@ docs =

[options.entry_points]
flake8.extension =
FOC=flake8_opencontracting:logical
FOC=flake8_opencontracting:physical

0 comments on commit 41a1001

Please sign in to comment.