flpelerin commited on
Commit
697ce7b
·
1 Parent(s): 8b26999

Update file wandb.py

Browse files
Files changed (1) hide show
  1. wandb.py +1 -1
wandb.py CHANGED
@@ -8,7 +8,7 @@ from util import Config, RandomCode
8
  class Wandb:
9
  def __init__(self, config: Config):
10
  self.__dict__ = dict(config.__dict__)
11
- locals().update({**self.__dict__})
12
 
13
  print(f"self: {self}")
14
  print(f'self dict: {dict(self.__dict__)}')
 
8
  class Wandb:
9
  def __init__(self, config: Config):
10
  self.__dict__ = dict(config.__dict__)
11
+ locals().update(self.__dict__)
12
 
13
  print(f"self: {self}")
14
  print(f'self dict: {dict(self.__dict__)}')