Skip to content

Commit

Permalink
join_path逻辑修复
Browse files Browse the repository at this point in the history
  • Loading branch information
myhloli committed Mar 15, 2024
1 parent 195998a commit 8486793
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion magic_pdf/libs/commons.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ def get_delta_time(input_time):


def join_path(*args):
return '/'.join(s.rstrip('/') for s in args)
return '/'.join(str(s).rstrip('/') for s in args)


#配置全局的errlog_path,方便demo同步引用
error_log_path = "s3://llm-pdf-text/err_logs/"
Expand Down

0 comments on commit 8486793

Please sign in to comment.