summaryrefslogtreecommitdiff
path: root/domestic/utility/read_file.py
blob: 7c9fcea184f5a5d46b2dcb47367281f45b3482fc (plain)
1
2
3
def read_file(location):
  with open(location, 'rb') as f:
    return f.read()