From 517da87ffb51c2577a388a42c9627f8775516317 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Mon, 10 Jun 2024 09:56:59 +0200 Subject: [PATCH] lint main --- rwx/__main__.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/rwx/__main__.py b/rwx/__main__.py index 0f73041..0f15b2e 100755 --- a/rwx/__main__.py +++ b/rwx/__main__.py @@ -5,14 +5,14 @@ import os import fs -if __name__ == '__main__': +if __name__ == "__main__": file_path = os.path.realpath(__file__) root_path = os.path.dirname(file_path) - directory_path = os.path.join(root_path, 'tmp') - file_path = os.path.join(directory_path, 'file') + directory_path = os.path.join(root_path, "tmp") + file_path = os.path.join(directory_path, "file") fs.wipe(directory_path) fs.make_directory(directory_path) - fs.write(file_path, 'Martine écrit beaucoup.') + fs.write(file_path, "Martine écrit beaucoup.") fs.empty_file(file_path) - fs.write(file_path, 'Martine écrit moins.') + fs.write(file_path, "Martine écrit moins.")