This commit is contained in:
Firepup Sixfifty 2023-08-01 01:50:35 +00:00
parent 93a5a810cb
commit b0f46a9e0a
6 changed files with 9 additions and 7 deletions

View file

@ -1,6 +1,8 @@
# FPSQL
An easy to use SQLite package
#### Change log:
###### v.1.0.5:
Double check mypy problems and resolve them
###### v.1.0.4:
Fix all mypy stub issues
###### v.1.0.3:

Binary file not shown.

Binary file not shown.

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "fpsql"
version = "1.0.4"
version = "1.0.5"
authors = ["Firepup650 <firepyp650@gmail.com>"]
description = "An easy to use SQLite package"
readme = "README.md"

View file

@ -1,6 +1,6 @@
[metadata]
name = fpsql
version = 1.0.4
version = 1.0.5
author = Firepup650
author_email = firepyp650@gmail.com
description = An easy to use SQLite package

View file

@ -14,8 +14,8 @@ def alias(Function):
return decorator
__VERSION__ = "1.0.2"
__NEW__ = "Fix internal vars"
__VERSION__ = "1.0.5"
__NEW__ = "Double check mypy problems and resolve them"
__LICENSE__ = "MIT"
@ -173,6 +173,6 @@ class sql:
# Raises:
None"""
self.__con.close()
self.__con = None
self.__db = None
self.__table = None
self.__con = None # type: ignore[assignment]
self.__db = ""
self.__table = ""