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 |
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/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
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
@hug.cli(validate=contains_one_of('argument_one', 'argument_two')) # you can combine these to make more then one mutually exclusive group | |
def mutually_exclusive_group(argument_one: type, argument_two: type): | |
pass |
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
import sys | |
with open(sys.argv[1]) as file: | |
print(file.read()) |
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
fn main() { | |
let x = the_world_is_not_safe(); | |
} | |
unsafe fn the_world_is_not_safe() -> String { | |
String::from("Hello, world!") | |
} |
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 peewee import TextField | |
class BetterUUID(TextField): | |
"""Stores a uuid only defining it if it doesn't already exist""" | |
def db_value(self, value): | |
if not value: | |
value = uuid.uuid4() | |
return value |
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
# Classes | |
class Person(object): | |
def contact(self): | |
self.email() | |
self.call() | |
def email(self): |
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
my_favorite_numbers = [] | |
for number in range(10): | |
if number == 7 or number == 42: | |
my_favorite_numbers.append(number) | |
my_favorite_numbers = [number for number in range(10) if number == 7 or number == 42] |
NewerOlder