Skip to content

Commit

Permalink
Merge pull request #46 from lsst-epo/39-add-guard-rails-logging-to-th…
Browse files Browse the repository at this point in the history
…e-pypi-package-informing-the-pi-of-which-project-they-are-currently-taking-effect-on

Fixed broken auth checker
  • Loading branch information
ericdrosas87 authored Jul 2, 2024
2 parents 5013e8b + fceebca commit e89b5ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ authors = [
]
description = "The companion package to the Rubin citizen science notebooks."

version = "0.6.3"
version = "0.6.4"
readme = "README.md"
dependencies = [
"panoptes_client",
Expand Down
2 changes: 1 addition & 1 deletion src/rubin/citsci/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def login_to_zooniverse(self, email):
if(valid_email):
self.email = email
self.client = panoptes_client.Panoptes.connect(login="interactive")
if self.client.username is not None:
if self.client.logged_in is True:
print("You now are logged in to the Zooniverse platform.")
self.__log_slug_names()
else:
Expand Down

0 comments on commit e89b5ff

Please sign in to comment.