diff --git a/c_formatter_42/__main__.py b/c_formatter_42/__main__.py index 4726e80..f50f30f 100644 --- a/c_formatter_42/__main__.py +++ b/c_formatter_42/__main__.py @@ -19,6 +19,7 @@ def main(): + print("hello") arg_parser = argparse.ArgumentParser( prog="c_formatter_42", description="Format C source according to the norm", @@ -47,9 +48,7 @@ def main(): with open(filepath, "r") as file: content = file.read() if args.confirm: - result = input( - f"Are you sure you want to overwrite {filepath}?[y/N]" - ) + result = input(f"Are you sure you want to overwrite {filepath}?[y/N]") if result != "y": continue print(f"Writing to {filepath}")