Skip to content

Commit

Permalink
merge in (#157)
Browse files Browse the repository at this point in the history
* Update README.md (#156)

* Update back_box_numeric.py - fix lint error for Qobj import (#155)

* Update back_box_numeric.py - fix lint error for Qobj import

fix lint error for Qobj import

* Update plotting.py colors = None

fix lint

* Update ansys.py

* Update the joining of `project_path` and `project_name` to pathlib convention (#154)

---------

Co-authored-by: Barkay Guttel <51173082+bguttel@users.noreply.github.com>
  • Loading branch information
zlatko-minev and bguttel authored May 21, 2024
1 parent 63e5cbf commit 10cf596
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Welcome to pyEPR :beers:! &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(see [arXiv:2010.00620](https://arxiv.org/abs/2010.00620))
===================
### Automated Python module for the design and quantization of Josephson quantum circuits

[![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.png?v=103)](https://github.com/zlatko-minev/pyEPR)
[![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/zlatko-minev/pyEPR)
[![star this repo](http://githubbadges.com/star.svg?user=zlatko-minev&repo=pyEPR&style=flat)](https://github.com/zlatko-minev/pyEPR)
[![fork this repo](http://githubbadges.com/fork.svg?user=zlatko-minev&repo=pyEPR&style=flat)](https://github.com/zlatko-minev/pyEPR/fork)
[![Anaconda-Server Badge](https://anaconda.org/conda-forge/pyepr-quantum/badges/installer/conda.svg)](https://conda.anaconda.org/conda-forge)
[![Star pyEPR](https://img.shields.io/badge/⭐-Star%20pyEPR-blue?style=flat)](https://github.com/zlatko-minev/pyEPR/stargazers)
[![Fork pyEPR](https://img.shields.io/badge/🍴-Fork%20pyEPR-blue?style=flat)](https://github.com/zlatko-minev/pyEPR/fork)
<br>
[![PyPI version](https://badge.fury.io/py/pyEPR-quantum.svg)](https://badge.fury.io/py/pyEPR-quantum)
[![DOI](https://zenodo.org/badge/101073856.svg)](https://zenodo.org/badge/latestdoi/101073856)

### Automated Python module for the design and quantization of Josephson quantum circuits


### Documentation
Expand Down
2 changes: 1 addition & 1 deletion pyEPR/ansys.py
Original file line number Diff line number Diff line change
Expand Up @@ -3246,7 +3246,7 @@ def load_ansys_project(proj_name: str,
), "ERROR! project_path is not a valid directory \N{loudly crying face}.\
Check the path, and especially \\ characters."

project_path /= project_path / Path(proj_name + extension)
project_path = Path(project_path, proj_name).with_suffix(extension)

if (project_path).is_file():
logger.info('\tFile path to HFSS project found.')
Expand Down

0 comments on commit 10cf596

Please sign in to comment.