Skip to content

Commit

Permalink
removed ensure, pre-release v0.0.1a14
Browse files Browse the repository at this point in the history
  • Loading branch information
ronylpatil committed Jun 17, 2024
1 parent 11be986 commit aced252
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ flake8==7.0.0
black==24.4.2
mypy==1.10.0
docutils==0.21.2
ensure==1.0.4

-r requirements.txt

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
with open("README.rst", "r", encoding="utf-8") as f:
long_description = f.read()

__version__ = "0.0.1a13"
__version__ = "0.0.1a14"
REPO_NAME = "chatInsights"
AUTHOR = "ronilpatil"
AUTHOR_EMAIL = "[email protected]"
Expand Down
2 changes: 0 additions & 2 deletions src/chatInsights/utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import re
import pandas as pd
from ensure import ensure_annotations # type: ignore
from typing import Union, Match


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


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

Expand Down

0 comments on commit aced252

Please sign in to comment.