From a52c0c1e227b0eb99312f8b4c1821dd1345667bc Mon Sep 17 00:00:00 2001 From: moshferatu Date: Mon, 18 Sep 2023 11:30:22 -0700 Subject: [PATCH] Add option type enum --- option_type.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 option_type.py diff --git a/option_type.py b/option_type.py new file mode 100644 index 0000000..79eb23f --- /dev/null +++ b/option_type.py @@ -0,0 +1,2 @@ +CALL = 'C' +PUT = 'P' \ No newline at end of file