Skip to content

Commit

Permalink
default args to None
Browse files Browse the repository at this point in the history
  • Loading branch information
DevDaveFrame committed Nov 29, 2023
1 parent 4aa1657 commit 3d3e89c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bigquery_exporter/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class BigQueryExporter:
batch = 1000
table_name = ''

def __init__(self, project, credentials):
def __init__(self, project=None, credentials=None):
assert self.model is not None, 'Model is not defined'
assert self.table_name != '', 'BigQuery table name is not defined'

Expand Down

0 comments on commit 3d3e89c

Please sign in to comment.