Skip to content

Commit

Permalink
Miscelaneous fixes and improvements (#866)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gertjan van Zwieten committed Apr 10, 2024
2 parents 0286339 + 9833497 commit 81d031d
Show file tree
Hide file tree
Showing 7 changed files with 159 additions and 122 deletions.
2 changes: 1 addition & 1 deletion nutils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'Numerical Utilities for Finite Element Analysis'

__version__ = version = '9a24'
__version__ = version = '9a25'
version_name = 'jook-sing'
2 changes: 1 addition & 1 deletion nutils/_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -802,7 +802,7 @@ def __sub__(self, other):
return self.copy().__isub__(other)

def isdisjoint(self, other):
return self._dict.isdisjoint(IDSetView(other))
return self._dict.keys().isdisjoint(IDSetView(other)._dict)

def intersection(self, other):
return self.__and__(IDSetView(other))
Expand Down
Loading

0 comments on commit 81d031d

Please sign in to comment.