@@ -70,6 +70,10 @@ class CurrencyCode(str, enum.Enum):
7070 CVX = "CVX"
7171 CZK = "CZK"
7272 DAI = "DAI"
73+ DIF = "DIF"
74+ LSR = "LSR"
75+ SRC = "SRC"
76+ BRB = "BRB"
7377 DASH = "DASH"
7478 DCR = "DCR"
7579 DFI = "DFI"
@@ -343,6 +347,10 @@ def visit(
343347 cvx : typing .Callable [[], T_Result ],
344348 czk : typing .Callable [[], T_Result ],
345349 dai : typing .Callable [[], T_Result ],
350+ dif : typing .Callable [[], T_Result ],
351+ lsr : typing .Callable [[], T_Result ],
352+ src : typing .Callable [[], T_Result ],
353+ brb : typing .Callable [[], T_Result ],
346354 dash : typing .Callable [[], T_Result ],
347355 dcr : typing .Callable [[], T_Result ],
348356 dfi : typing .Callable [[], T_Result ],
@@ -677,6 +685,14 @@ def visit(
677685 return czk ()
678686 if self is CurrencyCode .DAI :
679687 return dai ()
688+ if self is CurrencyCode .DIF :
689+ return dif ()
690+ if self is CurrencyCode .LSR :
691+ return lsr ()
692+ if self is CurrencyCode .SRC :
693+ return src ()
694+ if self is CurrencyCode .BRB :
695+ return brb ()
680696 if self is CurrencyCode .DASH :
681697 return dash ()
682698 if self is CurrencyCode .DCR :
0 commit comments