general: cleanup -- remove main and executable bit where it's not necessary

This commit is contained in:
Dima Gerasimov 2022-05-31 20:37:16 +01:00 committed by karlicoss
parent 2025d7ad1a
commit 73e57b52d1
13 changed files with 9 additions and 48 deletions

3
my/emfit/__init__.py Executable file → Normal file
View file

@ -1,4 +1,3 @@
#!/usr/bin/env python3
"""
[[https://shop-eu.emfit.com/products/emfit-qs][Emfit QS]] sleep tracker
@ -29,7 +28,7 @@ def dir_hash(path: Path):
# TODO take __file__ into account somehow?
@mcachew(cache_path=cache_dir() / 'emfit.cache', hashf=lambda: dir_hash(config.export_path), logger=dal.log)
@mcachew(cache_path=cache_dir() / 'emfit.cache', hashf=lambda: dir_hash(config.export_path))
def datas() -> Iterable[Res[Emfit]]:
import dataclasses

0
my/emfit/plot.py Executable file → Normal file
View file