Skip to content

Commit c038e16

Browse files
Address reviewer feedback
1 parent 1921a94 commit c038e16

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lib/ramble/ramble/software_environments.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -470,9 +470,7 @@ def __eq__(self, other):
470470
Returns:
471471
(bool): True if environments are equivalent, False otherwise
472472
"""
473-
equal = self.name == other.name
474-
475-
if not equal:
473+
if not self.name == other.name:
476474
return False
477475

478476
self_pkgs = {}

0 commit comments

Comments
 (0)