mirror of
https://github.com/chidiwilliams/buzz.git
synced 2026-03-14 22:55:46 +01:00
5 lines
91 B
Python
5 lines
91 B
Python
import os
|
|
|
|
|
|
def file_path_as_title(file_path: str):
|
|
return os.path.basename(file_path)
|