Skip to content

Commit

Permalink
[Codemod][python/main_function] faim
Browse files Browse the repository at this point in the history
Reviewed By: zsol

Differential Revision: D50831753

fbshipit-source-id: 86e70dea5480a0867917e176cf691cb0dc18b8d7
  • Loading branch information
generatedunixname89002005287564 authored and facebook-github-bot committed Oct 31, 2023
1 parent 2777026 commit e005267
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tools/scripts/features/lmdb_conversion.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,10 @@ def execute(self):
raise ValueError("mode must be either `convert` or `extract` ")


if __name__ == "__main__":
def main() -> None:
lmdb_converter = LMDBConversion()
lmdb_converter.execute()


if __name__ == "__main__":
main()

0 comments on commit e005267

Please sign in to comment.