Skip to content
Snippets Groups Projects
Commit 9b04a774 authored by Chris's avatar Chris
Browse files

Update BSet missing imports and comments

parent 1bccad0b
Branches
No related tags found
No related merge requests found
...@@ -4,6 +4,7 @@ from btypes.BString import * ...@@ -4,6 +4,7 @@ from btypes.BString import *
from btypes.BStruct import * from btypes.BStruct import *
import immutables import immutables
from functools import reduce
class BSet: class BSet:
...@@ -251,5 +252,5 @@ class BSet: ...@@ -251,5 +252,5 @@ class BSet:
def __iter__(self): def __iter__(self):
return iter(self.__set) return iter(self.__set)
# Import is at the bottom due to cyclic dependencies
from btypes.BRelation import * from btypes.BRelation import *
...@@ -250,5 +250,5 @@ class BSet: ...@@ -250,5 +250,5 @@ class BSet:
def __iter__(self): def __iter__(self):
return iter(self.__set) return iter(self.__set)
# Import is at the bottom due to cyclic dependencies
from btypes.BRelation import * from btypes.BRelation import *
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment