Skip to content

Commit

Permalink
Cosmetic commit to trigger new GHA run
Browse files Browse the repository at this point in the history
  • Loading branch information
catileptic committed Mar 12, 2024
1 parent 4afb3bc commit 20e2ebb
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions ftmocds/cli.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
import json
import click

from followthemoney.cli.cli import cli
from followthemoney.cli.util import write_object

from ftmocds.convert import convert_record


@cli.command('import-ocds', help="Import open contracting (OCDS) data")
@click.option('-i', '--infile', type=click.File('r'), default='-') # noqa
@click.option('-o', '--outfile', type=click.File('w'), default='-') # noqa
@cli.command("import-ocds", help="Import open contracting (OCDS) data")
@click.option("-i", "--infile", type=click.File("r"), default="-") # noqa
@click.option("-o", "--outfile", type=click.File("w"), default="-") # noqa
def import_ocds(infile, outfile):
try:
while True:
Expand Down

0 comments on commit 20e2ebb

Please sign in to comment.