lf_csv.py and lf_graph.py : changed variables to snake case

Signed-off-by: Chuck SmileyRekiere <chuck.smileyrekiere@candelatech.com>
This commit is contained in:
Chuck SmileyRekiere
2021-07-15 07:55:20 -06:00
parent 93faf1a550
commit 1098de8636
2 changed files with 7 additions and 7 deletions

View File

@@ -22,7 +22,7 @@ import numpy as np
import pandas as pd
class LfCSV:
class lf_csv:
def __init__(self,
_columns=['Stations', 'bk', 'be', 'vi', 'vo'],
_rows=[['sta0001', 'sta0002', 'sta0003', 'sta0004', 'sta0005'],
@@ -45,5 +45,5 @@ class LfCSV:
if __name__ == "__main__":
test = LfCSV()
test = lf_csv()
test.generate_csv()