Skip to content

Commit e13f58e

Browse files
committed
Fix incorrect arguments to update_env_with_coqpath_folders
1 parent cb70d5f commit e13f58e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coq_tools/inline_imports.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def main():
144144
update_env_with_libnames(env, args)
145145
if args.inline_user_contrib:
146146
update_env_with_coqpath_folders(
147-
env, os.path.join(get_coqc_coqlib(env["coqc"], coq_args=env["coqc_args"], **env), "user-contrib")
147+
"", env, os.path.join(get_coqc_coqlib(env["coqc"], coq_args=env["coqc_args"], **env), "user-contrib")
148148
)
149149

150150
filename = args.input_file.name

0 commit comments

Comments
 (0)