Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added author and reference link
  • Loading branch information
dimsf committed Feb 11, 2015
commit 9c447cf0f7c1b5b9fb2c81503ec09b0241ff6cda
5 changes: 5 additions & 0 deletions null_object.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
Author: https://github.com/fousteris-dim
Reference: http://en.wikipedia.org/wiki/Null_Object_pattern
"""

class Item:
"""Represents an abstract item"""
def __init__(self):
Expand Down