From faaa3ae9b12930cec1062a6324e9d9863bfcc367 Mon Sep 17 00:00:00 2001 From: Sam Germain Date: Mon, 18 Oct 2021 01:08:12 -0600 Subject: [PATCH] Removed exit_short rpcmessagetype --- freqtrade/enums/rpcmessagetype.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/freqtrade/enums/rpcmessagetype.py b/freqtrade/enums/rpcmessagetype.py index a17fa3d64..663b37b83 100644 --- a/freqtrade/enums/rpcmessagetype.py +++ b/freqtrade/enums/rpcmessagetype.py @@ -20,10 +20,6 @@ class RPCMessageType(Enum): SHORT_FILL = 'short_fill' SHORT_CANCEL = 'short_cancel' - EXIT_SHORT = 'exit_short' - EXIT_SHORT_FILL = 'exit_short_fill' - EXIT_SHORT_CANCEL = 'exit_short_cancel' - def __repr__(self): return self.value