Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AttributeError: 'list' object has no attribute 'strip' #7

Open
PixelMelt opened this issue Mar 12, 2023 · 1 comment
Open

AttributeError: 'list' object has no attribute 'strip' #7

PixelMelt opened this issue Mar 12, 2023 · 1 comment

Comments

@PixelMelt
Copy link

changing line 74 of workers.py from
if msg!=[]: temp["conversations"].append(msg.strip().replace("\t", " ")); msg=[]
to
if msg!=[]: temp["conversations"].append(str(msg).strip().replace("\t", " ")); msg=[]
fixed this

@JEF1056
Copy link
Owner

JEF1056 commented Mar 13, 2023

This repo is no logner being actively maintained! Feel free to open a PR if this is a change you really needed added to this repo specifically and not a fork

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants