Explorar el Código

Add a newline and a comment on the minimum reserve

Eren Yilmaz hace 5 años
padre
commit
c2df7044ca
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. 3 1
      client_controller.py

+ 3 - 1
client_controller.py

@@ -179,7 +179,9 @@ def depot():
         if response['banking_license']:
             print(f'Also, you have a banking license.')
             minimum_reserve = response['minimum_reserve']
-            print(f'You are legally obligated to deposit a minimum cash reserve of {minimum_reserve} at the central bank as a security for your credits.')
+            print(f'You are legally obligated to deposit a minimum cash reserve of {minimum_reserve}{CURRENCY_SYMBOL} '
+                  f'at the central bank as a security for your credits.')
+            print('This minimum reserve has already been subtracted from the displayed amount.')
     else:
         if 'error' in response:
             print('Depot access failed with message:', response['error'])