mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-04 22:39:43 +00:00
14 lines
212 B
Python
14 lines
212 B
Python
"""
|
|
author: deadc0de6 (https://github.com/deadc0de6)
|
|
Copyright (c) 2018, deadc0de6
|
|
|
|
jinja2 helper methods
|
|
"""
|
|
|
|
import os
|
|
|
|
|
|
def exists(path):
|
|
'''return true when path exists'''
|
|
return os.path.exists(path)
|