Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgebastida committed Apr 2, 2024
1 parent ce07e04 commit 562a4f9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
10 changes: 5 additions & 5 deletions awslogs/bin.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,11 +236,11 @@ def add_date_range_arguments(parser, default_start="5m"):

issue_info = "\n".join(
(
"Version: {__version__}",
"Python: {sys.version}",
"boto3 version: {boto3.__version__}",
"Platform: {platform.platform()}",
"Args: {sys.argv}",
f"Version: {__version__}",
f"Python: {sys.version}",
f"boto3 version: {boto3.__version__}",
f"Platform: {platform.platform()}",
f"Args: {sys.argv}",
"Config: {options}",
"",
traceback.format_exc(),
Expand Down
1 change: 0 additions & 1 deletion awslogs/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ def __init__(self, **kwargs):
self.aws_secret_access_key = kwargs.get("aws_secret_access_key")
self.aws_session_token = kwargs.get("aws_session_token")
self.aws_profile = kwargs.get("aws_profile")
self.aws_endpoint_url = kwargs.get("aws_endpoint_url")
self.log_group_name = kwargs.get("log_group_name")
self.log_stream_name = kwargs.get("log_stream_name")
self.filter_pattern = kwargs.get("filter_pattern")
Expand Down

0 comments on commit 562a4f9

Please sign in to comment.