Browse Source

Changed values for transaction type

Vsevolod Levitan 1 year ago
parent
commit
38a4cc1fc6
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/models/transaction_type.py

+ 2 - 2
src/models/transaction_type.py

@@ -2,5 +2,5 @@ import enum
 
 
 class TransactionType(enum.Enum):
-    income = 0
-    outcome = 1
+    income = 1
+    outcome = -1