8 lines
138 B
Python
8 lines
138 B
Python
from . import File
|
|
from pathlib import Path
|
|
|
|
|
|
class Art(File):
|
|
def __init__(self, location: Path):
|
|
super().__init__(location)
|