Skip to content

Commit 4ef2528

Browse files
committed
Remove NoReturn
1 parent 34bcaa8 commit 4ef2528

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pandas/util/_tester.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@
33
"""
44
import os
55
import sys
6-
from typing import NoReturn
76

87
PKG = os.path.dirname(os.path.dirname(__file__))
98

109

11-
def test(extra_args=None) -> NoReturn:
10+
def test(extra_args=None):
1211
try:
1312
import pytest
1413
except ImportError:

0 commit comments

Comments
 (0)