You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 11, 2025. It is now read-only.
This codebase mixes python's standard snake_case style with camelCase and lowercase styles.
It's not uncommon to preserve the casing of variables from an external API:
productArea = pO['productArea']
but for variables like pageNum that are only being used in python, it's best to stick to camel_case like page_num. This will make reading and searching the code easier for python engineers.
#Describe the bug
This codebase mixes python's standard snake_case style with camelCase and lowercase styles.
It's not uncommon to preserve the casing of variables from an external API:
productArea = pO['productArea']but for variables like
pageNumthat are only being used in python, it's best to stick to camel_case like page_num. This will make reading and searching the code easier for python engineers.🔹 Style Consistency (Nice to have)See MR comment: https://github.com/Hacker0x01/hai-on-hackerone/pull/1/files#r1638472023
#To Reproduce
N/A
#Expected behavior
N/A