Skip to content
Snippets Groups Projects
Commit f34dc2a3 authored by Raphaël Gomès's avatar Raphaël Gomès
Browse files

basics: remove useless prints

They are already duplicated by CLI callers. Also we're trying to remove
all calls to print from the lib, so it's a bonus.
parent e24fc1dd
No related branches found
No related tags found
1 merge request!23Use click for argument parsing, etc.
......@@ -92,7 +92,6 @@
def set_value(path, key, value):
data = get_data(path)
if data is None:
err(f'creating new file: "{path}"')
data = {}
set_one_value(data, key, value)
......@@ -104,7 +103,6 @@
def del_value(path, key):
data = get_data(path)
if data is None:
err(f'creating new file: "{path}"')
data = {}
key_path = key.split('.')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment