More bugfixes

This commit is contained in:
Dominik Moritz Roth 2023-07-06 23:16:57 +02:00
parent beb2c50979
commit 8910f3ae49

View File

@ -135,7 +135,7 @@ class Slate():
) as run:
config = copy.deepcopy(orig_config)
self.deep_update(config, wandb.config)
runner(run, config)
runner(self, run, config)
assert config == {}, ('Config was not completely consumed: ', config)
@ -171,7 +171,7 @@ class Slate():
config=config,
**wandbC
) as run:
runner(run, config)
runner(self, run, config)
assert config == {}, ('Config was not completely consumed: ', config)