From: rishucoding Date: Tue, 12 Jun 2018 09:34:30 +0000 (+0530) Subject: adding comment to cellnumber function X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7f3f4c4d6087b95e9a02b9b35d2203dc914d32e3;p=pinmux.git adding comment to cellnumber function --- diff --git a/src/bsv/actual_pinmux.py b/src/bsv/actual_pinmux.py index c382e7e..6899172 100644 --- a/src/bsv/actual_pinmux.py +++ b/src/bsv/actual_pinmux.py @@ -23,7 +23,7 @@ dedicated_wire = ''' digits = maketrans('0123456789', ' ' * 10) # delete space later -def cn(idx): +def cn(idx): # idx is an integer return "cell%s_mux" % str(idx)