Fix pylint warning

This commit is contained in:
Wilson Snyder 2023-04-29 22:22:38 -04:00
parent e15f5266a3
commit 3d21a79148
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ class VlAnnotations:
release: bool = False
def is_mt_safe_context(self):
return (not (self.mt_unsafe or self.mt_unsafe_one) and self.mt_safe)
return self.mt_safe and not (self.mt_unsafe or self.mt_unsafe_one)
def is_pure_context(self):
return self.pure