#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Felix Muzny
DS 2000
Lecture 9 - starter code
10/07/2022

A program to read and analyze earnings data for city of boston employees
"""
# start with our imports
import matplotlib.pyplot as plt


# define our constants
# if I want to switch between data sets
# this is the only string that I need to edit
DATA = "boston_earnings_small.csv"


# define our non-main functions next

# define our main function
# start here
def main():
    print("earnings program")
    

# call our main function
main()
