wolfhece 2.1.23__py3-none-any.whl → 2.1.27__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
wolfhece/apps/version.py CHANGED
@@ -5,7 +5,7 @@ class WolfVersion():
5
5
 
6
6
  self.major = 2
7
7
  self.minor = 1
8
- self.patch = 23
8
+ self.patch = 27
9
9
 
10
10
  def __str__(self):
11
11
 
wolfhece/cli.py CHANGED
@@ -4,6 +4,11 @@ def check():
4
4
  from .apps.check_install import main
5
5
  main()
6
6
 
7
+ def accept():
8
+ """ Main wolf application : Accept """
9
+ from .acceptability.cli import main
10
+ main()
11
+
7
12
  def wolf():
8
13
  """ Main wolf application : Map Manager"""
9
14
  from .apps.wolf import main