Skip to content

Commit

Permalink
fix ref
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkralidis committed Aug 22, 2023
1 parent aaac8f6 commit d3a7546
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyshadoz/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# those files. Users are asked to read the 3rd Party Licenses
# referenced with those assets.
#
# Copyright (c) 2022 Government of Canada
# Copyright (c) 2023 Government of Canada
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
Expand Down Expand Up @@ -418,7 +418,7 @@ def shadoz_info(file_, directory, recursive, verbose=False):
for key, value in s.metadata.items():
click.echo(f' {key}: {value}')
click.echo('\nData:')
click.echo(' Number of records: {len(s.data)}')
click.echo(f' Number of records: {len(s.data)}')
click.echo(' Attributes:')
for df in s.get_data_fields():
data_field_data = sorted(s.get_data(df[0], df[1]))
Expand Down

0 comments on commit d3a7546

Please sign in to comment.