Skip to content

Commit 561545e

Browse files
Fix flake8
1 parent f62a879 commit 561545e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
# stop the build if there are Python syntax errors or undefined names
2424
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
2525
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
26-
run flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
26+
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
2727
- name: Test with unittest
2828
run: |
2929
python -m unittest -v

torch_points/torchpoints.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from torch.autograd import Function
33
import torch.nn as nn
44
import sys
5-
from typing import Optional
5+
from typing import Optional, Any, Tuple
66

77
import torch_points.points_cpu as tpcpu
88

0 commit comments

Comments
 (0)