27 lines
458 B
Python
27 lines
458 B
Python
# Wizard Kit: Functions - UFD
|
|
|
|
from functions.common import *
|
|
|
|
|
|
def get_full_path(item):
|
|
"""Get full path to item, returns str."""
|
|
#TODO
|
|
pass
|
|
|
|
|
|
def is_block_device(item):
|
|
"""Verify item is a block device, returns bool."""
|
|
#TODO
|
|
pass
|
|
|
|
|
|
def is_valid_main_kit(path):
|
|
"""Verify path contains the main kit, returns bool."""
|
|
#TODO
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
print("This file is not meant to be called directly.")
|
|
|
|
# vim: sts=2 sw=2 ts=2
|