Skip to content

Instantly share code, notes, and snippets.

View benjiyamin's full-sized avatar
💭
Probably coding

Ben Miller benjiyamin

💭
Probably coding
View GitHub Profile
@benjiyamin
benjiyamin / test_pep8.py
Created October 24, 2016 17:12
A PEP-8 unit test for Python's built-in unittest module. Must install the pep8 package ('pip install pep8').
import os
import unittest
import pep8
class Pep8Test(unittest.TestCase):
def test_pep8(self):