Skip to content

Commit e8cfec2

Browse files
committed
linting
1 parent 7383a0c commit e8cfec2

File tree

2 files changed

+1
-13
lines changed

2 files changed

+1
-13
lines changed

.code-style.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ We are using some tools to keep a default coding style in the project.
1313

1414
We following the [Numpy](https://numpydoc.readthedocs.io/en/latest/format.html) docstring style with [PEP484](https://www.python.org/dev/peps/pep-0484/#abstract).
1515

16-
1716
## Links
1817
- <https://pre-commit.com/>
1918
- <https://www.codacy.com/>

pymove/core/pandas.py

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,6 @@
11
"""PandasMoveDataFrame class."""
22

3-
from typing import (
4-
TYPE_CHECKING,
5-
Any,
6-
Callable,
7-
Dict,
8-
List,
9-
Optional,
10-
Set,
11-
Text,
12-
Tuple,
13-
Union,
14-
)
3+
from typing import TYPE_CHECKING, Any, Callable, Dict, List, Optional, Text, Tuple, Union
154

165
import numpy as np
176
from pandas import DataFrame, DateOffset, Series, Timedelta

0 commit comments

Comments
 (0)