Skip to content

Commit 4552d11

Browse files
committed
Fix DeltaCode call in cli.py
Signed-off-by: Steven Esser <sesser@nexb.com>
1 parent a00a6d6 commit 4552d11

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/deltacode/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def cli(new, old, csv_file, json_file):
7878
option is selected, print the JSON results to the console.
7979
"""
8080
# do the delta
81-
delta = DeltaCode(new, old).determine_delta()
81+
delta = DeltaCode(new, old)
8282

8383
# output to csv
8484
if csv_file:

0 commit comments

Comments
 (0)