From 731b08f8433b3ea19c46169ed2bbd8be30cd912f Mon Sep 17 00:00:00 2001
From: biAji <biaji@biaji.net>
Date: Thu, 18 Jul 2019 09:22:28 +0800
Subject: [PATCH] Add encoding info to source

According to PEP-263, add encoding info to source code
---
 ADC_function.py    | 2 ++
 AV_Data_Capture.py | 2 ++
 core.py            | 2 ++
 3 files changed, 6 insertions(+)

diff --git a/ADC_function.py b/ADC_function.py
index 6360574..476560e 100644
--- a/ADC_function.py
+++ b/ADC_function.py
@@ -1,3 +1,5 @@
+# -*- coding: utf-8 -*-
+
 import requests
 from configparser import ConfigParser
 import os
diff --git a/AV_Data_Capture.py b/AV_Data_Capture.py
index d8a6e33..7d4da3c 100644
--- a/AV_Data_Capture.py
+++ b/AV_Data_Capture.py
@@ -1,3 +1,5 @@
+# -*- coding: utf-8 -*-
+
 import glob
 import os
 import time
diff --git a/core.py b/core.py
index b68692e..0120dda 100644
--- a/core.py
+++ b/core.py
@@ -1,3 +1,5 @@
+# -*- coding: utf-8 -*-
+
 import re
 import os
 import os.path