Skip to content

Commit

Permalink
Fixed minor bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno-beloff committed Jun 7, 2023
1 parent 1daff5a commit 0572f47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/scs_mfr/cmd/cmd_aws_group_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def is_valid(self):
if not self.set and (self.aws_group_name is not None or self.force):
return False

if not self.set and self.stdin and not self.force:
if not self.set and not self.force:
return False

return True
Expand Down
2 changes: 1 addition & 1 deletion src/scs_mfr/cmd/cmd_aws_identity.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def __init__(self):
# ----------------------------------------------------------------------------------------------------------------

def is_valid(self):
if not self.setup and (bool(self.group_name) or bool(self.core_name) or bool(self.stdin)):
if not self.setup and (bool(self.group_name) or bool(self.core_name)):
return False

return True
Expand Down

0 comments on commit 0572f47

Please sign in to comment.