core-providers (audio): removes deprecated `filename` property (#8299)

This commit is contained in:
Lucas Couto 2023-07-02 04:33:02 -03:00 committed by GitHub
parent ee040926ed
commit 5ea06fd0ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 9 deletions

View File

@ -157,15 +157,6 @@ class Sound(EventDispatcher):
Use :attr:`state` instead.
'''
def _get_filename(self):
return self.source
filename = AliasProperty(
_get_filename, None, bind=('source', ), deprecated=True)
'''
.. deprecated:: 1.3.0
Use :attr:`source` instead.
'''
__events__ = ('on_play', 'on_stop')
def on_source(self, instance, filename):