From 78e8bb6c8c0d47d491f7a9a9cb1a4d892ef53963 Mon Sep 17 00:00:00 2001 From: Divyansh Singh Date: Sat, 25 Mar 2023 02:08:52 +0530 Subject: [PATCH] reformat --- borgmatic/config/load.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/borgmatic/config/load.py b/borgmatic/config/load.py index 32181126..01ceab2b 100644 --- a/borgmatic/config/load.py +++ b/borgmatic/config/load.py @@ -100,8 +100,8 @@ def load_configuration(filename): yaml = ruamel.yaml.YAML(typ='safe') yaml.Constructor = Include_constructor_with_include_directory - with open(filename) as f: - file_contents = f.read() + with open(filename) as file: + file_contents = file.read() config = yaml.load(file_contents) if config and 'constants' in config: for key, value in config['constants'].items():