Try spike for 3.6

This commit is contained in:
Roman Mogylatov 2020-09-17 22:21:20 -04:00
parent e644577223
commit fec6e2b878

View File

@ -126,3 +126,8 @@ class ConfigurationOption:
def __class_getitem__(cls, item):
return cls(item)
@classmethod
def __getitem__(cls, item):
# Spike for Python 3.6
return cls(item)