File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -84,19 +84,19 @@ def Main():
84
84
args , _ = getopt .getopt (argument_list , options )
85
85
for current_argument , current_value in args :
86
86
if current_argument in ('-h' ):
87
- print ('-' * 30 )
87
+ print ('-' * 30 )
88
88
print ('-h : args description' )
89
89
print ('-i : pass location of input img-file' )
90
90
print ('-n : number of outputs required' )
91
- print ('-' * 30 )
91
+ print ('-' * 30 )
92
92
if current_argument in ('-i' ):
93
- print ('-' * 30 )
93
+ print ('-' * 30 )
94
94
in_path += current_value
95
95
print (f'[+] Input-file: { in_path } ' )
96
96
if current_argument in ('-n' ):
97
97
count = int (current_value )
98
98
print (f'[+] Output-Count: { current_value } ' )
99
- print ('-' * 30 )
99
+ print ('-' * 30 )
100
100
101
101
except getopt .error as error :
102
102
print (str (error ))
@@ -124,7 +124,8 @@ def Main():
124
124
new_img = perform_sorting (args , img )
125
125
# --- SAVE NEW FILE ---
126
126
new_img .save (out_file )
127
- print ('-' * 30 )
127
+ print ('-' * 30 )
128
+
128
129
129
130
if __name__ == "__main__" :
130
131
Main ()
You can’t perform that action at this time.
0 commit comments