This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from sh import zfs_scrub, do_scrub | |
@hug.cli() | |
def do_scrub(): | |
for output in zfs_scrub(''): | |
cache.set('key', output.split('%')[0].split(' ')[-1]) | |
cache.set('key', 'done') | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/absl/_enum_module.py b/absl/_enum_module.py | |
index 899c488..c12e1d8 100644 | |
--- a/absl/_enum_module.py | |
+++ b/absl/_enum_module.py | |
@@ -41,6 +41,7 @@ the following is true: | |
""" | |
# pylint: disable=unused-import | |
import sys | |
+ | |
import six |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/build_scripts/build.py b/build_scripts/build.py | |
index bff729f5..5659a569 100755 | |
--- a/build_scripts/build.py | |
+++ b/build_scripts/build.py | |
@@ -15,6 +15,7 @@ import sys | |
import build_utils | |
import py27 | |
+ | |
def parse_args(): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/setup.py b/setup.py | |
index 21e9470..ecf9b6a 100644 | |
--- a/setup.py | |
+++ b/setup.py | |
@@ -17,7 +17,8 @@ import codecs | |
import sys | |
import unittest | |
-from setuptools import setup, Command | |
+from setuptools import Command |
OlderNewer