- Notifications
You must be signed in to change notification settings - Fork673
Open
Labels
Description
Shouldn't most objects be able to refresh for convenience?
project=gl.projects.create({...})project.default_branch# Noneproject.files.create( {"file_path":"README","branch":"master","content":"Initial content","commit_message":"Initial commit", })project.default_branch# None (not true on the server anymore)project.refresh()project.default_branch# "master"