mirror of
https://github.com/SinTan1729/ReVancedBuilder.git
synced 2024-12-25 20:28:37 -06:00
doc: Clean the TODO tags
This commit is contained in:
parent
d760c511ba
commit
086effe1b1
3 changed files with 2 additions and 6 deletions
|
@ -85,7 +85,7 @@ def build_apps(appstate):
|
|||
clean_exit(f"There was an error while building {pretty_name}!\n{e}", appstate)
|
||||
|
||||
try:
|
||||
os.rename(output_name+'.apk', output_name+'.apk') # TODO: Add timestamp here
|
||||
os.rename(output_name+'.apk', output_name+'.apk')
|
||||
except FileNotFoundError:
|
||||
clean_exit(f"There was an error while building {pretty_name}!", appstate)
|
||||
|
|
@ -75,7 +75,6 @@ def send_notif(appstate, error=False):
|
|||
print('Failed!' + str(e))
|
||||
|
||||
case 'telegram':
|
||||
# TODO: Finish this!
|
||||
print('Sending notification through Telegram...')
|
||||
try:
|
||||
chat = config[entry]['chat']
|
||||
|
|
|
@ -19,9 +19,6 @@ from ReVancedBuilder.JAVABuilder import build_apps
|
|||
from ReVancedBuilder.Notifications import send_notif
|
||||
from ReVancedBuilder.Cleanup import move_apps, clean_exit
|
||||
|
||||
# TODO: README
|
||||
# TODO: PATCHES_GUIDE.md (maybe delete it?)
|
||||
|
||||
# Update the ReVanced tools, if needed
|
||||
def update_tools(appstate):
|
||||
for item in ['revanced-cli', 'revanced-integrations', 'revanced-patches']:
|
||||
|
@ -191,4 +188,4 @@ elif flag != ['checkonly']:
|
|||
# Delete the lockfile
|
||||
os.remove('lockfile')
|
||||
|
||||
sys.exit(0)
|
||||
sys.exit(0)
|
||||
|
|
Loading…
Reference in a new issue