Feat: add __init__ and mod function signature

This commit is contained in:
2024-08-14 07:21:36 +02:00
parent 8a03ba8329
commit d613bf00df
5 changed files with 14 additions and 48 deletions

View File

@@ -55,7 +55,7 @@ class FSRepository(AbstractRepository):
raise ValueError("Can't open the table")
def write(self, table:str, content, schema:str='.'):
def write(self, content, table:str, schema:str='.'):
table_path = self.build_table_path(table, schema)
pass