Skip to content

Commit e35dabf

Browse files
charles-typfacebook-github-bot
authored andcommitted
Update perfpub to use absolute imports
Summary: Fix error: ``` ImportError: attempted relative import with no known parent ``` When running on Google Axion Reviewed By: excelle08 Differential Revision: D79773159
1 parent 61b5100 commit e35dabf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

perfpub/perfpub.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/usr/bin/python3
22

33
# pyre-unsafe
4-
from . import utils
54

5+
import utils # pyre-ignore[21]: This file is only used in open-source environments
66

77
if __name__ == "__main__":
88
parser = utils.init_parser()

0 commit comments

Comments
 (0)