Skip to content

Commit

Permalink
fix DMRSConfigBase.py and nrPDSCHConfig.py
Browse files Browse the repository at this point in the history
  • Loading branch information
catkira committed Oct 29, 2023
1 parent 582a1de commit 0dfb9e2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions py3gpp/configs/DMRSConfigBase.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ def DMRSAdditionalPosition(self, pos):
self._DMRSAdditionalPosition = pos

@property
def DMRSAdditionalPosition(self):
def DMRSLength(self):
return self._DMRSLength

@DMRSAdditionalPosition.setter
def DMRSAdditionalPosition(self, pos):
@DMRSLength.setter
def DMRSLength(self, pos):
assert pos in list(range(4))
self._DMRSLength = pos

Expand Down
3 changes: 2 additions & 1 deletion py3gpp/configs/nrPDSCHConfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

class nrPDSCHConfig(PDSCHConfigBase, CommonConfig):
def __init__(self):
super().__init__()
PDSCHConfigBase.__init__(self)
CommonConfig.__init__(self)
self._Nid = 0
self._NSizeBWP = []
self._NStartBWP = []
Expand Down

0 comments on commit 0dfb9e2

Please sign in to comment.