mirror of
https://github.com/jantic/DeOldify.git
synced 2026-08-29 02:10:55 +08:00
dff82b6d2e
All the files marked as executable were bugging me, so I ran this: find . -executable -type f -print0 | xargs -0 grep -L '#!' | xargs chmod -x
8 lines
192 B
Python
8 lines
192 B
Python
import sys
|
|
import logging
|
|
logging.getLogger().addHandler(logging.StreamHandler(sys.stdout))
|
|
logging.getLogger().setLevel(logging.INFO)
|
|
|
|
from deoldify._device import _Device
|
|
|
|
device = _Device() |