1.0.5
This commit is contained in:
parent
93a5a810cb
commit
b0f46a9e0a
6 changed files with 9 additions and 7 deletions
|
@ -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:
|
||||
|
|
BIN
package/dist/fpsql-1.0.4-py3-none-any.whl
vendored
BIN
package/dist/fpsql-1.0.4-py3-none-any.whl
vendored
Binary file not shown.
BIN
package/dist/fpsql-1.0.4.tar.gz
vendored
BIN
package/dist/fpsql-1.0.4.tar.gz
vendored
Binary file not shown.
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 = ""
|
||||
|
|
Loading…
Reference in a new issue