Remove __init__.py files

Since we're implementing a plugin system that relies on implicit
namespacing, we should remove these files so that they don't confuse and
muddle our virtual envs (like the ones we use to run tests).

Also, they're not longer needed as of Python 3.3.

PEP 420 says:
Allowing implicit namespace packages means that the requirement to
provide an __init__.py file can be dropped completely...
This commit is contained in:
Jonathan Wren 2021-06-26 14:28:55 -07:00
parent 1a7e8d8ea2
commit 6c191f2a38
19 changed files with 19 additions and 47 deletions

View file

@ -5,7 +5,7 @@
from jrnl.plugins.base import BaseExporter
from ... import __version__
from jrnl.__version__ import __version__
class Exporter(BaseExporter):