https://github.com/AllenInstitute/ecephys_spike_sorting
Tip revision: ad2c3f89ea9212ef04bf6a82693322944fe9e492 authored by dependabot[bot] on 11 January 2024, 16:41:04 UTC
Bump jinja2 from 2.11.2 to 3.1.3
Bump jinja2 from 2.11.2 to 3.1.3
Tip revision: ad2c3f8
helloworld.py
"""
Example
=================================
One-line description
"""
import matplotlib.pyplot as plt
import numpy as np
x = 'hello_world'
########################################
# This is rendered text, and will break apart a notebook cell
y = 'foo'
print(x)
plt.plot(np.random.rand(100), np.random.rand(100), 'b.')
plt.show()