Skip to content

Commit a8ccb29

Browse files
python3 -> python, removes timestamp option
1 parent 17a17e3 commit a8ccb29

4 files changed

+3
-6
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ first-pass::
3131
bin/download-collection.sh
3232
bin/download-pipeline.sh
3333
bin/concat.sh
34-
python3 bin/download-issues.py
34+
python bin/download-issues.py
3535
bin/download-operational-issues.sh
36-
python3 bin/download-column-field.py
37-
python3 bin/download-converted-resources.py
36+
python bin/download-column-field.py
37+
python bin/download-converted-resources.py
3838
#bin/download-resources.sh
3939
./bin/concat-issues.py
4040
./bin/concat-column-field.py

bin/download-column-field.py

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
logger = logging.getLogger("__name__")
1111

1212
@click.command()
13-
@click.option("--timestamp",default=None)
1413
def download_column_field(timestamp=None):
1514
resources = get_resources("collection/")
1615
url_map = {}

bin/download-converted-resources.py

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
logger = logging.getLogger("__name__")
1111

1212
@click.command()
13-
@click.option("--timestamp",default=None)
1413
def download_converted_resource(timestamp=None):
1514
resources = get_resources("collection/")
1615
url_map = {}

bin/download-issues.py

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
logger = logging.getLogger("__name__")
1111

1212
@click.command()
13-
@click.option("--timestamp",default=None)
1413
def download_issues(timestamp=None):
1514
resources = get_resources("collection/")
1615
url_map = {}

0 commit comments

Comments
 (0)