diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-04-27 18:31:49 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-04-27 18:31:49 +0800 |
commit | dcf2a2e1709dddb04ff0f87d5186abe14e58f76e (patch) | |
tree | a6ac6275956fef754b30bf96f37828c12b5c6c12 | |
parent | 188ef5fd79ebf94fbd01f37950f08616749d19c5 (diff) | |
download | cexcess-dcf2a2e1709dddb04ff0f87d5186abe14e58f76e.tar.bz2 |
extract_info.py: do not import re
-rwxr-xr-x | extract_info.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/extract_info.py b/extract_info.py index af127b4..52bc78b 100755 --- a/extract_info.py +++ b/extract_info.py @@ -6,15 +6,17 @@ # in order to visualize the FoV coverage of the observations. # # Aaron LI -# 2016-04-22 +# Created: 2016-04-22 +# Updated: 2016-04-27 # -# ChangeLog: +# Changelog: +# 2016-04-27: +# * Do not import the unused "re" module # import sys import glob import os -import re import json import csv import argparse |