Skip to content

Commit dc40e2c

Browse files
authored
removed lines for testing
1 parent d72034c commit dc40e2c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

db_diff/cli.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def generate_output_filename(previous: str, current: str, output_file: Optional[
134134
# Extract base filenames without extensions for the comparison files
135135
prev_basename = os.path.splitext(os.path.basename(previous))[0]
136136
curr_basename = os.path.splitext(os.path.basename(current))[0]
137-
print(f"output_file: {output_file}")
137+
138138
# Build the base filename
139139
if output_file:
140140
# Remove .json extension if present to avoid double extension
@@ -155,7 +155,6 @@ def generate_output_filename(previous: str, current: str, output_file: Optional[
155155
if not os.path.isdir(output_path):
156156
logger.error(f"Output path '{output_path}' does not exist")
157157
raise click.ClickException(f"Output path '{output_path}' does not exist or is not a directory.")
158-
print(f"base_filename: {base_filename}")
159158
full_path = os.path.join(output_path, base_filename)
160159
else:
161160
full_path = base_filename

0 commit comments

Comments
 (0)