Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
iamlemec committed Oct 31, 2019
1 parent 1fa6b0c commit 960754d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions firm_assign.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import argparse
import pandas as pd
from standardize import standardize_strong
from firm_tools import read_csv
from tools.standardize import standardize_strong
from tools.tables import read_csv

# parse input arguments
parser = argparse.ArgumentParser(description='USPTO assign fixer.')
Expand Down
4 changes: 2 additions & 2 deletions firm_cites.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
import sqlite3
import numpy as np
import pandas as pd
from firm_tools import read_csv
from tools.tables import read_csv

# parse input arguments
parser = argparse.ArgumentParser(description='Merge patent citation data.')
parser.add_argument('--output', type=str, default='tables', help='directory to operate on')
parser.add_argument('--chunk', type=int, default=10_000_000, help='chunk size for citations')
parser.add_argument('--chunk', type=int, default=10000000, help='chunk size for citations')
args = parser.parse_args()

# load in grant data
Expand Down
2 changes: 1 addition & 1 deletion firm_merge.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import numpy as np
import pandas as pd
from itertools import chain
from firm_tools import read_csv
from tools.tables import read_csv

def merge_grants(output):
print('Merging all grant data')
Expand Down

0 comments on commit 960754d

Please sign in to comment.