Skip to content

Commit

Permalink
Fixes type ignore in wrong position due to black auto formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Daverball committed Nov 21, 2023
1 parent 322bbd7 commit 85dc299
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stubs/fanstatic/fanstatic/compiler.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ class CoffeeScript(CommandlineBase, Compiler):
name: ClassVar[Literal["coffee"]]
command: ClassVar[Literal["coffee"]]
source_extension = NotImplemented
def process(
def process( # type:ignore[override]
self, source: StrOrBytesPath | _SourceType, target: StrOrBytesPath | _TargetType
) -> None: ... # type:ignore[override]
) -> None: ...

COFFEE_COMPILER: CoffeeScript

Expand Down

0 comments on commit 85dc299

Please sign in to comment.