11 lines
127 B
Python
11 lines
127 B
Python
#!/usr/bin/env python3
|
|
|
|
|
|
def postdelete():
|
|
"""Post-delete steps."""
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
postdelete()
|