Skip to content
Snippets Groups Projects
Unverified Commit 677723e9 authored by Shenghang Tsai's avatar Shenghang Tsai Committed by GitHub
Browse files

quick fix gen api syntax err (#4175)


Co-authored-by: default avataroneflow-ci-bot <69100618+oneflow-ci-bot@users.noreply.github.com>
parent 70be1687
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@ class VirtualModule(object):
for k, v in self._func_or_class_dict.items():
lines += include_export(k, v)
lines = list(mod_set) + lines
f.write("\n".join(lines))
f.write("\n" + "\n".join(lines) + "\n")
def submodule_names(self):
return self._submodule_dict.keys()
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment