Browse Source

improve stock creation script

Eren Yilmaz 6 năm trước cách đây
mục cha
commit
cdbaeb134e
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      create_new_stock.py

+ 1 - 1
create_new_stock.py

@@ -2,5 +2,5 @@ import model
 from admin_console import cleanup
 
 if __name__ == '__main__':
-    print(model.new_stock(30))
+    print(model.new_stock(input('How long will the initial selling be available?')))
     cleanup()