-
-
Notifications
You must be signed in to change notification settings - Fork 8
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
Feature/Delete an existing skill #39
base: main
Are you sure you want to change the base?
Feature/Delete an existing skill #39
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 💯 we'll merge this after education so there is no duplicate stuff.
Btw, it is generally a better practice to keep PRs independent of each other if you're merging them to the same branch (i.e. main). This shows only the relevant code of the PR and makes it easier to review
app.py
Outdated
@@ -58,27 +58,39 @@ def experience(index=None): | |||
return jsonify({"error": "Experience not found"}), 404 | |||
return jsonify(data["experience"]), 200 | |||
|
|||
if request.method == 'POST': | |||
json_data = request.json | |||
if request.method == "POST": |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should not be updated in this PR
75d6824
to
7cdf0ba
Compare
cda6eb8
to
c03602a
Compare
@Pradyuman7