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

@@ -741,9 +741,9 @@ if __name__ == '__main__':
init_batch(opts)
if opts.card_handler:
ch = card_handler_auto(sl, opts.card_handler)
ch = CardHandlerAuto(sl, opts.card_handler)
else:
ch = card_handler(sl)
ch = CardHandler(sl)
# Iterate
first = True