Skip to content

Commit

Permalink
FEATURE: name needs to be provided as an explicit argument
Browse files Browse the repository at this point in the history
  • Loading branch information
vikashplus committed Apr 7, 2023
1 parent cb1c2ea commit f258be0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions robohive/logger/roboset_logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

class RoboSet_Trace(Trace):

def __init__(self, **kwargs):
super().__init__(**kwargs)
def __init__(self, name, **kwargs):
super().__init__(name=name, **kwargs)
self.trace_type=TraceType.ROBOSET


Expand Down

0 comments on commit f258be0

Please sign in to comment.