Skip to content

Commit

Permalink
Sort using isort on aws-cloudtrail2sof-elk.py file (philhagen#323)
Browse files Browse the repository at this point in the history
This is a minor change: only change the sort while importing Python modules.
The objective is to make the code more readable and standardized.
  • Loading branch information
za authored Mar 28, 2024
1 parent 936d07b commit 3217616
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions supporting-scripts/aws-cloudtrail2sof-elk.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
# This script will recursively read a file or directory tree of JSON AWS Cloudtrail logs and output in a format that SOF-ELK® can read. Both gzipped and native JSON is supported.

import argparse
import sys
import os
import json
import gzip
import json
import os
import sys

default_destdir = '/logstash/aws/'

Expand Down

0 comments on commit 3217616

Please sign in to comment.