Skip to content

Commit

Permalink
Added some pep8 modification remained and removed unwanted files (#144)
Browse files Browse the repository at this point in the history
Co-authored-by: Greshma Shaji <[email protected]>
  • Loading branch information
philross and GreshmaShaji authored Oct 25, 2024
1 parent d115c0e commit 62a87b5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,12 @@ jobs:
- name: Run autopep8 (fix PEP8 issues automatically)
run: autopep8 --in-place --recursive --aggressive --max-line-length 120 -v .

- name: Clean the workspace
if: github.event_name == 'pull_request'
run: git reset --hard

- name: Commit changes if any
if: github.event_name == 'push'
run: |
git config --global user.name "GitHub Action"
git config --global user.email "[email protected]"
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,18 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from modules.applications.qml.generative_modeling.mappings.Library import Library
from modules.training.Inference import Inference
from modules.training.QGAN import QGAN
from modules.training.QCBM import QCBM
from typing import Union

import numpy as np
import pennylane as qml
from jax import numpy as jnp
import jax

from modules.applications.qml.generative_modeling.mappings.Library import Library
from modules.training.Inference import Inference
from modules.training.QGAN import QGAN
from modules.training.QCBM import QCBM

jax.config.update("jax_enable_x64", True)


Expand Down

0 comments on commit 62a87b5

Please sign in to comment.