Code:
class Arquivos:
@property
def file(self):
return self._file
@file.setter
def file(self, arquivo):
if arquivo:
self._file = os.path.abspath(arquivo)
Call:
Arquivos.file('usp/dados.json')
Error:
File "/home/pc8454/faculdade/python/gerador.py", line 123, in <module>
Arquivos.file('usp/dados.json')
TypeError: 'property' object is not callable