Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix set vs list ordering bug #476

Merged
merged 2 commits into from
Nov 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nise/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "4.4.7"
__version__ = "4.4.8"

VERSION = __version__.split(".")
4 changes: 2 additions & 2 deletions nise/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -1146,7 +1146,7 @@ def gcp_create_report(options): # noqa: C901
)
else:
months = _create_month_list(start_date, end_date)
monthly_files = set()
monthly_files = []
output_files = []
for month in months:
data = []
Expand Down Expand Up @@ -1180,7 +1180,7 @@ def gcp_create_report(options): # noqa: C901

local_file_path, output_file_name = write_gcp_file(gen_start_date, gen_end_date, data, options)
output_files.append(output_file_name)
monthly_files.update([local_file_path])
monthly_files.append(local_file_path)

for index, month_file in enumerate(monthly_files):
if gcp_bucket_name:
Expand Down