1.0.42 (small typo fix)

This commit is contained in:
Firepup Sixfifty 2024-08-30 12:25:44 -05:00
parent 1f13093f38
commit f2ff82b337
Signed by: Firepup650
SSH key fingerprint: SHA256:cb8sEJwc0kQJ6/nMUhscWRe35itf0NFMdSKl3v4qt48
3 changed files with 6 additions and 4 deletions

View file

@ -1,6 +1,8 @@
# Firepup650
Package containing various shorthand things I use, and a few imports I almost always use
### Change log:
#### v.1.0.42:
Small typo fix (`stackLevel` -> `stacklevel`)
#### v.1.0.41:
Windows "Support"
#### v.1.0.40:

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "firepup650"
version = "1.0.41"
version = "1.0.42"
authors = ["Firepup650 <firepyp650@gmail.com>"]
description = "Package containing various shorthand things I use, and a few imports I almost always use"
readme = "README.md"

View file

@ -8,7 +8,7 @@ try:
except ImportError:
ww(
"Warning! This module has reduced functionality on Windows! I hope you know what you're doing!",
stackLevel=2,
stacklevel=2,
)
import os, sys, time, sqlite3, ast, pydoc # type: ignore[import]
@ -41,8 +41,8 @@ def alias(func):
return decorator
__VERSION__ = "1.0.41"
__NEW__ = 'Windows "Support"'
__VERSION__ = "1.0.42"
__NEW__ = "Small typo fix"
__LICENSE__ = "MIT"