Skip to content

Commit 8f1abab

Browse files
Clean up code by removing unnecessary whitespace and unused imports
1 parent dcaca8c commit 8f1abab

4 files changed

Lines changed: 2 additions & 5 deletions

File tree

movens/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from movens.main import organize_files_in_directory
22

3-
__all__ = ['organize_files_in_directory']
3+
__all__ = ['organize_files_in_directory']

movens/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
def main():
1616
organize_files_in_directory(args.path)
1717

18-
18+
1919
if __name__ == "__main__":
2020
main()

movens/main.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,6 @@ def organize_files_in_directory(folder_path: str) -> None:
119119
print(f"[✖] Could not move {file.name}: {e}")
120120

121121

122-
123122
if __name__ == '__main__':
124123
import sys
125124
if len(sys.argv) > 1:

setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
__email__,
77
__author__,
88
__github__,
9-
__pypi__,
10-
__license__,
119
__keywords__,
1210
__development_status__,
1311
__programming_language__,

0 commit comments

Comments
 (0)