def __init__()

in dataflux_pytorch/lightning/gcs_filesystem.py [0:0]


    def __init__(self,
                 path: Union[str, os.PathLike],
                 project_name: str,
                 storage_client: Optional[storage.Client] = None,
                 debug: Optional[bool] = False,
                 **kwargs):
        super().__init__(path, **kwargs)
        self.fs = GCSFileSystem(project_name=project_name,
                                storage_client=storage_client,
                                debug=debug)