Browse Source

Re-order imports, add some metadata

Clara Hobbs 6 years ago
parent
commit
d5f4383bc9
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      alpaca_isp/__init__.py

+ 4
- 1
alpaca_isp/__init__.py View File

@@ -13,9 +13,12 @@
13 13
 # limitations under the License.
14 14
 """In-system programming tool for LPC microcontrollers"""
15 15
 
16
-from enum import Enum
16
+__author__ = "Clayton G. Hobbs"
17
+__version__ = "0"
18
+
17 19
 import struct
18 20
 import time
21
+from enum import Enum
19 22
 
20 23
 import serial
21 24
 

Loading…
Cancel
Save