Skip to content

Commit 8ab65a5

Browse files
author
Sam Goodwin
committed
chore: apply formatting
Signed-off-by: Sam Goodwin <[email protected]>
1 parent fd0f5df commit 8ab65a5

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

pandera/typing/common.py

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,21 @@
11
"""Common typing functionality."""
2+
23
# pylint:disable=abstract-method,too-many-ancestors,invalid-name
34

45
import inspect
5-
from typing import TYPE_CHECKING, Any, Generic, Optional, Type, TypeVar, Union, List, Dict, Tuple, NamedTuple
6+
from typing import (
7+
TYPE_CHECKING,
8+
Any,
9+
Generic,
10+
Optional,
11+
Type,
12+
TypeVar,
13+
Union,
14+
List,
15+
Dict,
16+
Tuple,
17+
NamedTuple,
18+
)
619

720
import pandas as pd
821
import typing_inspect

0 commit comments

Comments
 (0)