the formatting here wasn't round tripping without manually
adjusting the indentation. this suggests that "check" mode
is not doing the exact same thing as "write". maybe
file.write_text() is changing something.
Change-Id: Ic320800eea7d3333b8a76ede85293c2832c619ed
via ``foodialect.dialect``.
3. The entry point can be established in setup.py as follows::
- entry_points = """
+ entry_points = """
[sqlalchemy.dialects]
foodialect = foodialect.dialect:FooDialect
"""
including a database-qualification. For example, if ``FooDialect``
were in fact a MySQL dialect, the entry point could be established like this::
- entry_points = """
+ entry_points = """
[sqlalchemy.dialects]
mysql.foodialect = foodialect.dialect:FooDialect
"""