Remove debug call

This commit is contained in:
Dominik Moritz Roth 2022-08-22 17:28:11 +02:00
parent 0b71d2fe0c
commit 361b118593

View File

@ -353,8 +353,6 @@ class CompositionalObservable(Observable):
o = [obs.get_observation().reshape((-1)) o = [obs.get_observation().reshape((-1))
for obs in self.observables] for obs in self.observables]
o = np.hstack(o) o = np.hstack(o)
import pdb
pdb.set_trace()
return o return o
def draw(self): def draw(self):