Codebase list ohcount / 29f5ec7d-1b44-45ad-9822-90a9c74d506b/main test / src_dir / py1.py
29f5ec7d-1b44-45ad-9822-90a9c74d506b/main

Tree @29f5ec7d-1b44-45ad-9822-90a9c74d506b/main (Download .tar.gz)

py1.py @29f5ec7d-1b44-45ad-9822-90a9c74d506b/mainraw · history · blame

# some python code
# lorem
# ipsum
# foo

class Foo:
  """
  This is a foo class
  It doesn't do anything
  Therefore this doc comment is pointless
  """

  def __init__(self, bar):
    """short doc comment"""
    print(bar)

  def string(self):
    print('This is a string')