Skip to content

Commit 41a1fb4

Browse files
style: format code with autopep8
Format code with autopep8 This commit fixes the style issues introduced in 5a280d6 according to the output from Autopep8. Details: None
1 parent 6c1242b commit 41a1fb4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Backup Generator/backup_generator.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import shutil
33
import datetime
44

5+
56
def backup_files(source_dir, destination_dir):
67
"""
78
Backup files from the source directory to the destination directory.
@@ -17,6 +18,7 @@ def backup_files(source_dir, destination_dir):
1718
except OSError as e:
1819
print(f"Error creating backup: {e}")
1920

21+
2022
if __name__ == "__main__":
2123
# Replace these paths with the appropriate source and destination directories
2224
source_directory = "/path/to/source_directory"

0 commit comments

Comments
 (0)