Fix naming
This commit is contained in:
parent
15982a4ac0
commit
b3fc7db0b6
@ -5,7 +5,7 @@ import os
|
||||
import logging
|
||||
import re
|
||||
from pprint import pformat
|
||||
from .types import ResultRow
|
||||
from .types import CSVResultRow as ResultRow
|
||||
|
||||
class CSVResultReader:
|
||||
def __init__(self, fileName: str):
|
||||
|
@ -1,5 +1,5 @@
|
||||
|
||||
class ResultRow:
|
||||
class CSVResultRow:
|
||||
def __init__(self, firstName, lastName, club, id, group, class_, dance, place, placeTo, competitionGroup, competitionClass):
|
||||
self.firstName = firstName
|
||||
self.lastName = lastName
|
||||
@ -20,6 +20,6 @@ class ResultRow:
|
||||
class State4:
|
||||
def __init__(
|
||||
self,
|
||||
csvRows: list[ResultRow]
|
||||
csvRows: list[CSVResultRow]
|
||||
):
|
||||
self.csvRows = csvRows
|
||||
|
Loading…
Reference in New Issue
Block a user