Skip to content

Commit

Permalink
Replace six.string_types and six.integer_types
Browse files Browse the repository at this point in the history
  • Loading branch information
dbieber committed Sep 20, 2024
1 parent 8b063b9 commit 80d1b46
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions fire/value_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,9 @@
import inspect

from fire import inspectutils
import six


VALUE_TYPES = (bool, six.string_types, six.integer_types, float, complex,
VALUE_TYPES = (bool, str, bytes, int, float, complex,
type(Ellipsis), type(None), type(NotImplemented))


Expand Down

0 comments on commit 80d1b46

Please sign in to comment.