reflex-dev / templates

36 stars 10 forks source link

Some __init__.py files are almost empty #31

Closed obourdon closed 2 months ago

obourdon commented 2 months ago

Here they are:

find . -name .git -prune -o -name __pycache__ -prune -o -name .web -prune -o \! -name '*~' -type f -ls | grep __init | awk '$7==1{print}'
13112085726        8 -rw-r--r--    1 olivierbourdon   staff                   1 Sep 27 16:39 ./ci_template/cijob/backend/__init__.py
13112085727        8 -rw-r--r--    1 olivierbourdon   staff                   1 Sep 27 16:39 ./dashboard/dashboard/backend/__init__.py

and their contents:

(reflex) MacBook-Pro-Olivier-3:templates olivierbourdon$ od -x ./dashboard/dashboard/backend/__init__.py
0000000      000a                                                        
0000001
(reflex) MacBook-Pro-Olivier-3:templates olivierbourdon$ od -x ./ci_template/cijob/backend/__init__.py
0000000      000a                                                        
0000001

Should be empty like all other ones to avoid any confusion

picklelo commented 2 months ago

Merged in #32