princekhunt / privateping

PrivatePing is a secure messaging application built on Python's Django framework, providing end-to-end encryption for messages exchanged between users.
https://privateping.bytespot.tech
MIT License
125 stars 30 forks source link

Added comments for registration->views.py #41

Closed Mayureshd-18 closed 1 week ago

Mayureshd-18 commented 1 week ago

fixes: #32

Added multiline and single line comments in order to make the code more developer friendly.

princekhunt commented 1 week ago

Hey @Mayureshd-18

Thanks for the PR, but there are some modifications required before it can be merged to main.

  1. There are multiple typos in comments, such as on line no. 27, 61, 64 and more.
  2. In some functions you are using numbered list, and in some other functions, there are paragraphs. Kindly maintain consistency. Use any one.
  3. When you're writing paragraph or list of comments, use long comment ("""), and for single line, use #
  4. Also review the overall structure once, make sure it follows best practices.
Mayureshd-18 commented 1 week ago

@princekhunt Done! Please check.