mirror of
https://github.com/zen-browser/desktop.git
synced 2025-07-08 04:49:59 +02:00
11 lines
No EOL
197 B
Python
11 lines
No EOL
197 B
Python
|
|
import os
|
|
|
|
def initialize_avatars():
|
|
os.system("cd src/browser/base/content/zen-avatars && python3 fetch-all-avatars.py")
|
|
|
|
def main():
|
|
initialize_avatars()
|
|
|
|
if __name__ == "__main__":
|
|
main() |