소스 검색

proper import order

George C. Privon 5 년 전
부모
커밋
b6f2d556d1
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      email_stats.py

+ 3 - 3
email_stats.py

@@ -22,12 +22,12 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 
+import re
+import argparse
 import mailbox
 import datetime
-import matplotlib.pyplot as plt
-import argparse
-import re
 import numpy as np
+import matplotlib.pyplot as plt
 
 
 parser = argparse.ArgumentParser()