Skip to content

Commit

Permalink
fix: auto generate type error in controllers/web/conversation.py (lan…
Browse files Browse the repository at this point in the history
  • Loading branch information
crazywoola authored Dec 8, 2023
1 parent e5c7a81 commit a3dca3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/controllers/web/conversation.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def post(self, app_model, end_user, c_id):

parser = reqparse.RequestParser()
parser.add_argument('name', type=str, required=False, location='json')
parser.add_argument('auto_generate', type=bool, required=False, default='False', location='json')
parser.add_argument('auto_generate', type=bool, required=False, default=False, location='json')
args = parser.parse_args()

try:
Expand Down

0 comments on commit a3dca3d

Please sign in to comment.