mirror of
https://github.com/google/pebble.git
synced 2025-03-19 02:21:21 +00:00
12 lines
193 B
Python
12 lines
193 B
Python
|
#!/usr/bin/env python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
|
||
|
"""Convenience wrapper for running directly from source tree."""
|
||
|
|
||
|
|
||
|
from pblconvert.pblconvert import main
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|