Checkpoint initial implementation
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import os
|
||||
|
||||
|
||||
# Class ############################################################################################
|
||||
|
||||
class Datapack:
|
||||
|
||||
def __init__(self, path:str):
|
||||
self.path = path
|
||||
|
||||
@property
|
||||
def name(self) -> str:
|
||||
return os.path.basename(self.path)
|
||||
|
||||
Reference in New Issue
Block a user