easybits 0.1.2__tar.gz → 0.1.3__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: easybits
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: A friendly interface for exploring bits.
5
5
  Author: Chris Proctor
6
6
  Author-email: chris@chrisproctor.net
@@ -1,5 +1,5 @@
1
1
 
2
2
  def is_bit_string(value):
3
3
  bit_chars = {'1', '0', ' '}
4
- return not (set(value) - bit_chars)
4
+ return value.strip() and not (set(value) - bit_chars)
5
5
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "easybits"
3
- version = "0.1.2"
3
+ version = "0.1.3"
4
4
  description = "A friendly interface for exploring bits."
5
5
  authors = ["Chris Proctor <chris@chrisproctor.net>"]
6
6
  readme = "README.md"
File without changes
File without changes
File without changes