Commit 8a0dc4fd authored by kesnar's avatar kesnar
Browse files

fix: _MeterEntryBase should pass p4_client to its super

parent 657912ce
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5213,7 +5213,7 @@ class _MeterEntryBase(_P4EntityBase):
    """

    def __init__(self, p4_client, *args, **kwargs):
        super().__init__(*args, **kwargs)
        super().__init__(p4_client, *args, **kwargs)
        self._meter_type = self._info.spec.unit
        self.index = -1
        self.cir = -1