This commit is contained in:
Firepup Sixfifty 2024-09-03 09:31:25 -05:00
parent f2ff82b337
commit e2ecd8699a
Signed by: Firepup650
SSH key fingerprint: SHA256:cb8sEJwc0kQJ6/nMUhscWRe35itf0NFMdSKl3v4qt48
3 changed files with 4 additions and 2 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.43:
Called the error the wrong thing
#### v.1.0.42:
Small typo fix (`stackLevel` -> `stacklevel`)
#### v.1.0.41:

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "firepup650"
version = "1.0.42"
version = "1.0.43"
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

@ -46,7 +46,7 @@ __NEW__ = "Small typo fix"
__LICENSE__ = "MIT"
class NotImplementedOnWindowsException(NotImplementedException):
class NotImplementedOnWindowsException(NotImplementedError):
"""Exception raised when a Linux only method is called on a Windows machine"""