Database files renamed

This commit is contained in:
SimpleArt
2020-11-07 17:17:18 -05:00
parent c959f44fd5
commit e1f794d7b7
4 changed files with 9 additions and 12 deletions

View File

@ -1,10 +1,7 @@
# Graphing package
import matplotlib.pyplot as plt
# Database class
from database import database
from sqlite3 import Error
class Graph:
class Matplotlib_Graph:
"""Prebuilt graphing functions to make visual represention of fitness data."""

View File

@ -3,9 +3,9 @@ from sqlite3 import Error
import os
class Database:
class SQL_Database:
"""Main database class that controls all the functionality for input /
out of the database."""
out of the database using SQLite3."""
def __init__(self):