瀏覽代碼

Make scripts executable

Mario Hüttel 2 年之前
父節點
當前提交
ba71bad13f
共有 2 個文件被更改,包括 5 次插入1 次删除
  1. 3 1
      generate_storage_label.py
  2. 2 0
      print_labels_from_csv.py

+ 3 - 1
generate_storage_label.py

@@ -1,3 +1,5 @@
+#!/bin/python
+
 import shimatta_label.label_image as li
 import shimatta_label.brother_ql_wrapper as ql_wrapper
 from shimatta_label.storage_label import StorageLabel
@@ -6,4 +8,4 @@ label = StorageLabel()
 label.put_content('[stor_uuid]1c5cf30a-829c-4716-abfc-9ae2d4d493b2', '/Test1')
 
 printer = ql_wrapper.BrotherQlPrinter(label_format='29x90')
-printer.print_image(label.get_pillow_image(), rotation=90, cut=True)
+printer.print_image(label.get_pillow_image(), rotation=90, cut=True)

+ 2 - 0
print_labels_from_csv.py

@@ -1,3 +1,5 @@
+#!/bin/python
+
 import pandas as pd
 import shimatta_label.label_image as li
 import shimatta_label.brother_ql_wrapper as ql_wrapper