-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Removed all sudo scripts and merged into one for better useability as they were extremely similar code-wise - Changed import for sudo to new way and implemented the new way where needed - Added constants for repeated text as to make it easier to read and less repetitive - Refactored N_P_P.py for better readability and scaling. Also removes duped lines and adds a more effective system for showing the options based on the user's level - Created two new scripts to work upon, 'Notifications' and 'Staff_Portal' - Noticed previous variable of 'species' etc was unused in the filter so changed to 'species_query' etc - Ensured the filtered gender only returns those of Male or Female, not both as originally Male would also show Female due to the string containing 'male'
- Loading branch information
1 parent
6c4150b
commit 40cf395
Showing
14 changed files
with
307 additions
and
404 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import time | ||
|
||
def notifications(): | ||
print("\nThis is the notifications feature. It is currently under construction. Please come back later.") | ||
time.sleep(2) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import time | ||
|
||
def staff_portal(): | ||
print("\nThis is the staff portal. It is currently under construction. Please come back later.") | ||
time.sleep(2) |
Oops, something went wrong.