pySim-prog: rename card_handler to CardHandler

In OOP, we usually use capital letters for class names. The card handler
class should be no execption.

Change-Id: I4b2c06b1c607c993c9aaf0d57ad2352bb6b36e74
This commit is contained in:
Philipp Maier
2021-09-17 12:35:58 +02:00
parent 82511e5218
commit b18eed072c
3 changed files with 6 additions and 6 deletions

View File

@@ -27,7 +27,7 @@ import sys
import yaml
# Manual card handler: User is prompted to insert/remove card from the reader.
class card_handler:
class CardHandler:
sl = None
@@ -47,7 +47,7 @@ class card_handler:
print("")
# Automatic card handler: A machine is used to handle the cards.
class card_handler_auto:
class CardHandlerAuto:
sl = None
cmds = None