From 5ddbee886fda9dbdb059644389db75cd7ceedffe Mon Sep 17 00:00:00 2001 From: "Lynn \"Zhorken\" Vaughan" Date: Fri, 21 Feb 2014 17:59:52 -0500 Subject: [PATCH] Update the docstring on rewrite_long_table_names. --- pokedex/db/oracle.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/pokedex/db/oracle.py b/pokedex/db/oracle.py index ad9fd11..81ed896 100644 --- a/pokedex/db/oracle.py +++ b/pokedex/db/oracle.py @@ -2,12 +2,7 @@ from pokedex.db import metadata ### Helper functions for oracle def rewrite_long_table_names(): - """Modifies the table names to disenvowel long table names. - Takes the metadata from memory or uses the imported one. - - Returns a dictionary matching short names -> long names. - """ - + """Disemvowels all table names over thirty characters.""" # Load tables from metadata table_objs = metadata.tables.values()