oskarastrom commited on
Commit
3449ad8
·
1 Parent(s): 24f373c

Update tracker.py

Browse files
Files changed (1) hide show
  1. lib/fish_eye/tracker.py +2 -0
lib/fish_eye/tracker.py CHANGED
@@ -32,6 +32,8 @@ class Tracker:
32
  print("algorithm", self.algorithm, type(self.algorithm))
33
  print(type(self.algorithm) == Sort)
34
  print(type(self.algorithm) == Associate)
 
 
35
  print(self.algorithm is Sort)
36
  print(self.algorithm is Associate)
37
  print(type(self.algorithm) is Sort)
 
32
  print("algorithm", self.algorithm, type(self.algorithm))
33
  print(type(self.algorithm) == Sort)
34
  print(type(self.algorithm) == Associate)
35
+ print(isinstance(self.algorithm, Sort))
36
+ print(isinstance(self.algorithm, Associate))
37
  print(self.algorithm is Sort)
38
  print(self.algorithm is Associate)
39
  print(type(self.algorithm) is Sort)