Skip to content

Commit a178490

Browse files
Fixed PathProperties class init issue (#18559)
1 parent 2b72cb5 commit a178490

File tree

1 file changed

+0
-3
lines changed
  • sdk/storage/azure-storage-file-datalake/azure/storage/filedatalake

1 file changed

+0
-3
lines changed

sdk/storage/azure-storage-file-datalake/azure/storage/filedatalake/_models.py

-3
Original file line numberDiff line numberDiff line change
@@ -203,9 +203,6 @@ class PathProperties(object):
203203
"""
204204

205205
def __init__(self, **kwargs):
206-
super(PathProperties, self).__init__(
207-
**kwargs
208-
)
209206
self.name = kwargs.pop('name', None)
210207
self.owner = kwargs.get('owner', None)
211208
self.group = kwargs.get('group', None)

0 commit comments

Comments
 (0)