Skip to content

Commit aced252

Browse files
committedJun 17, 2024·
removed ensure, pre-release v0.0.1a14
1 parent 11be986 commit aced252

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed
 

‎requirements_dev.txt

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ flake8==7.0.0
55
black==24.4.2
66
mypy==1.10.0
77
docutils==0.21.2
8-
ensure==1.0.4
98

109
-r requirements.txt
1110

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
with open("README.rst", "r", encoding="utf-8") as f:
44
long_description = f.read()
55

6-
__version__ = "0.0.1a13"
6+
__version__ = "0.0.1a14"
77
REPO_NAME = "chatInsights"
88
AUTHOR = "ronilpatil"
99
AUTHOR_EMAIL = "ronylpatil@gmail.com"

‎src/chatInsights/utils.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import re
22
import pandas as pd
3-
from ensure import ensure_annotations # type: ignore
43
from typing import Union, Match
54

65

@@ -54,7 +53,6 @@ def _fetchMessages(line: str) -> tuple:
5453
return date, time, author, message
5554

5655

57-
@ensure_annotations
5856
def _transformData(file_path: str) -> pd.DataFrame:
5957
from datetime import datetime
6058

0 commit comments

Comments
 (0)
Please sign in to comment.