Commit f14c0236 authored by Patrick Labatut's avatar Patrick Labatut Committed by Facebook GitHub Bot
Browse files

Remove extra pyre fixmes

Summary: Remove extra pyre fixmes

Reviewed By: bottler

Differential Revision: D28929468

fbshipit-source-id: 175b7986d49b56de7af063e97a9b0423570f9093
parent 36b451a4
...@@ -19,7 +19,6 @@ class _knn_points(Function): ...@@ -19,7 +19,6 @@ class _knn_points(Function):
@staticmethod @staticmethod
# pyre-fixme[14]: `forward` overrides method defined in `Function` inconsistently. # pyre-fixme[14]: `forward` overrides method defined in `Function` inconsistently.
# pyre-fixme[14]: `forward` overrides method defined in `Function` inconsistently.
def forward( def forward(
ctx, p1, p2, lengths1, lengths2, K, version, return_sorted: bool = True ctx, p1, p2, lengths1, lengths2, K, version, return_sorted: bool = True
): ):
......
...@@ -277,7 +277,6 @@ class _RasterizeFaceVerts(torch.autograd.Function): ...@@ -277,7 +277,6 @@ class _RasterizeFaceVerts(torch.autograd.Function):
@staticmethod @staticmethod
# pyre-fixme[14]: `forward` overrides method defined in `Function` inconsistently. # pyre-fixme[14]: `forward` overrides method defined in `Function` inconsistently.
# pyre-fixme[14]: `forward` overrides method defined in `Function` inconsistently.
def forward( def forward(
ctx, ctx,
face_verts: torch.Tensor, face_verts: torch.Tensor,
......
...@@ -84,7 +84,6 @@ class _Render(torch.autograd.Function): ...@@ -84,7 +84,6 @@ class _Render(torch.autograd.Function):
@staticmethod @staticmethod
# pyre-fixme[14]: `forward` overrides method defined in `Function` inconsistently. # pyre-fixme[14]: `forward` overrides method defined in `Function` inconsistently.
# pyre-fixme[14]: `forward` overrides method defined in `Function` inconsistently.
def forward( def forward(
ctx, ctx,
vert_pos, vert_pos,
......
...@@ -193,7 +193,6 @@ def _format_radius( ...@@ -193,7 +193,6 @@ def _format_radius(
class _RasterizePoints(torch.autograd.Function): class _RasterizePoints(torch.autograd.Function):
@staticmethod @staticmethod
# pyre-fixme[14]: `forward` overrides method defined in `Function` inconsistently. # pyre-fixme[14]: `forward` overrides method defined in `Function` inconsistently.
# pyre-fixme[14]: `forward` overrides method defined in `Function` inconsistently.
def forward( def forward(
ctx, ctx,
points, # (P, 3) points, # (P, 3)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment