Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pysamples/load_block.py
diff options
context:
space:
mode:
authorWalter Bender <walter.bender@gmail.com>2011-02-26 16:48:44 (GMT)
committer Walter Bender <walter.bender@gmail.com>2011-02-26 16:48:44 (GMT)
commit6f21b8133cb583901810853b478a51fe6aaea311 (patch)
tree9fd37ab41f71f5c81df044f2e60f81be3e88d5eb /pysamples/load_block.py
parent2267a2997a2e03b5a2ff7830ec22b02ae57875e6 (diff)
pep8 cleanup
Diffstat (limited to 'pysamples/load_block.py')
-rw-r--r--pysamples/load_block.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pysamples/load_block.py b/pysamples/load_block.py
index 084786d..8fb9546 100644
--- a/pysamples/load_block.py
+++ b/pysamples/load_block.py
@@ -21,6 +21,7 @@
# This procedure is invoked when the user-definable block on the "extras"
# palette is selected.
+
def myblock(lc, blkname):
###########################################################################
@@ -32,7 +33,6 @@ def myblock(lc, blkname):
from taconstants import BLOCK_NAMES, PRIMITIVES
from tautils import find_group
-
def new_block(lc, blkname, x, y):
""" Create a new block. It is a bit more work than just calling
_new_block(). We need to:
@@ -66,4 +66,3 @@ def myblock(lc, blkname):
y += int(new_block(lc, name, x, y))
else:
new_block(lc, blkname, x, y)
-