File size: 165 Bytes
025cc15
 
 
 
 
 
1
2
3
4
5
6
# Load static files
def load_file_content(file_path):
    if file_path.is_file():
        with file_path.open() as file:
            return file.read()
    return ""