Skip to content

Commit 1a33360

Browse files
committed
Remove print statemnets
1 parent 047f7cc commit 1a33360

File tree

1 file changed

+0
-5
lines changed
  • bcodmo_frictionless/bcodmo_pipeline_processors

1 file changed

+0
-5
lines changed

bcodmo_frictionless/bcodmo_pipeline_processors/load.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,6 @@ def process_resource(rows, missing_data_values):
322322
sheets.append(sheet_name)
323323
else:
324324
sheets_separate = sheet.split(sheet_separator)
325-
print("SHEETS SEPERATE", sheets_separate)
326325
for s in sheets_separate:
327326
if re.match(r"\d-\d", s):
328327
try:
@@ -344,7 +343,6 @@ def process_resource(rows, missing_data_values):
344343
f"No sheets found for {url} with the inputted parameters"
345344
)
346345

347-
print("SHEETS", sheets)
348346
# Create load processors for all of these sheets
349347
for sheet_name in sheets:
350348
new_name = clean_resource_name(str(sheet_name))
@@ -381,9 +379,6 @@ def process_resource(rows, missing_data_values):
381379

382380
# Default all infer and cast strategy to string to handle an update from dataflows that deprecates old pipelines
383381
# https://bco-dmo-group.slack.com/archives/CSQ582V4Y/p1712063770616059
384-
print(load_sources)
385-
print(resource_names)
386-
print(all_sheet_names)
387382
parameters["infer_strategy"] = "strings"
388383
parameters["cast_strategy"] = "strings"
389384
params.extend(

0 commit comments

Comments
 (0)