Hello ! hope you're having a good day. I have a si...
# prefect-community
e
Hello ! hope you're having a good day. I have a simple question, why can't we write custom Filesystems inheriting from
WritableFileSystem
? With this code
Copy code
In [6]: class MyFS(WritableFileSystem):
   ...:     _basepath = ""
   ...:     def read_path(self, path):
   ...:         return
   ...:     def write_path(self, path, content):
   ...:         return
In [7]: MyFS()
I get the following error
Copy code
OSError: source code not available
😢 1
n
Hi @Ethienne Marcelin can you try defining your filesystem in a file instead of ipython?
e
It works :) thanks
👍 1