Skip to content

Commit

Permalink
skip_full_attributes as init arg
Browse files Browse the repository at this point in the history
  • Loading branch information
gpongelli committed Mar 29, 2023
1 parent adc6650 commit 4a872df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rtcclient/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ class RTCBase(object):
OSLC_CR_XML = "application/x-oslc-cm-change-request+xml"
OSLC_CR_JSON = "application/x-oslc-cm-change-request+json"

def __init__(self, url, **kwargs):
def __init__(self, url, skip_full_attributes=True, **kwargs):
self.url = self.validate_url(url)
self.__skip_full_attributes = kwargs.get('skip_full_attributes', True)
self.__skip_full_attributes = skip_full_attributes

def __repr__(self):
return "<%s %s>" % (self.__class__.__name__, str(self))
Expand Down

0 comments on commit 4a872df

Please sign in to comment.