-
Notifications
You must be signed in to change notification settings - Fork 648
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
typo - day3 - missing parentheses #85
Comments
CristyTarantino
pushed a commit
to CristyTarantino/toolkitten
that referenced
this issue
Aug 15, 2018
is this issue still open and may I work on it ? |
@aggarwal19 the issue has been resolved but it’s in a pull request and it requires an admin of the project to merge and close the issue. |
okay , thank you |
Thank you to inform me .
_
…On Sat, 6 Oct 2018, 2:26 a.m. Cristina Tarantino, ***@***.***> wrote:
@aggarwal19 <https://github.com/aggarwal19> the issue has been resolved
but it’s in a pull request and it requires an admin of the project to merge
and close the issue.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#85 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AjNPlcVZlOPri7zXVk7m7eq_4HeofA3qks5uh8dzgaJpZM4VWRQ_>
.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In
day3.md
file the code for convertingvar2
string to print the sum ofvar1 + var2
is missing a parentheses.It should be:
print(var1 + int(var2))
and not
print(var1 + int(var2)
The text was updated successfully, but these errors were encountered: