Fix misspelled dict entry

This commit is contained in:
Thomas Wade 2020-04-22 16:39:36 +09:30
parent 676a619775
commit abdc8fe67a
2 changed files with 2 additions and 2 deletions

View File

@ -567,7 +567,7 @@ class FAAPI:
def __getstate__(self): def __getstate__(self):
# Get a copy of the object state without the requests session # Get a copy of the object state without the requests session
state = self.__dict__.copy() state = self.__dict__.copy()
del(state['req']) del(state['_req'])
return state return state

View File

@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup( setup(
name='FAAPI', name='FAAPI',
version='0.5.0', version='0.5.1',
packages=find_packages(), packages=find_packages(),
url='https://tem.party/gitea/tom/FAAPI', url='https://tem.party/gitea/tom/FAAPI',
license='WTFPL', license='WTFPL',