hubaimaster / aws-interface

Create and manage powerful backends with one click
https://aws-interface.com
Apache License 2.0
55 stars 7 forks source link

login method, signed up users #42

Closed Naruu closed 5 years ago

Naruu commented 5 years ago

implemented managing and checking login method implemented checking number of user, groups in signed-up users

hubaimaster commented 5 years ago

Nice work! But the convention is not right line 180, [ if (groups.find_element_by_tag_name('a').text.strip() == group_name): ] must be -> [ if groups.find_element_by_tag_name('a').text.strip() == group_name: ] Please follow the pep8 convention rules using pylint or pycharm editor.

Naruu commented 5 years ago

Yep I’ll be more careful next time :)