File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 373
373
* [ Electric Conductivity] ( electronics/electric_conductivity.py )
374
374
* [ Electric Power] ( electronics/electric_power.py )
375
375
* [ Electrical Impedance] ( electronics/electrical_impedance.py )
376
- * [ Ic 555 Timer] ( electronics/ic_555_timer.py )
377
376
* [ Ind Reactance] ( electronics/ind_reactance.py )
378
377
* [ Ohms Law] ( electronics/ohms_law.py )
379
378
* [ Real And Reactive Power] ( electronics/real_and_reactive_power.py )
623
622
* [ Is Ip V4 Address Valid] ( maths/is_ip_v4_address_valid.py )
624
623
* [ Is Square Free] ( maths/is_square_free.py )
625
624
* [ Jaccard Similarity] ( maths/jaccard_similarity.py )
626
- * [ Joint Probability Distribution] ( maths/joint_probability_distribution.py )
627
625
* [ Juggler Sequence] ( maths/juggler_sequence.py )
628
626
* [ Karatsuba] ( maths/karatsuba.py )
629
627
* [ Krishnamurthy Number] ( maths/krishnamurthy_number.py )
677
675
* [ Radians] ( maths/radians.py )
678
676
* [ Radix2 Fft] ( maths/radix2_fft.py )
679
677
* [ Remove Digit] ( maths/remove_digit.py )
678
+ * [ Rkf45] ( maths/rkf45.py )
680
679
* [ Runge Kutta] ( maths/runge_kutta.py )
681
- * [ Runge Kutta Fehlberg 45] ( maths/runge_kutta_fehlberg_45.py )
682
680
* [ Segmented Sieve] ( maths/segmented_sieve.py )
683
681
* Series
684
682
* [ Arithmetic] ( maths/series/arithmetic.py )
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ def added_solution_file_path() -> list[pathlib.Path]:
55
55
solution_file_paths = []
56
56
headers = {
57
57
"Accept" : "application/vnd.github.v3+json" ,
58
- "Authorization" : f "token { os .getenv ( ' GITHUB_TOKEN' , '' ) } " ,
58
+ "Authorization" : "token " + os .environ [ " GITHUB_TOKEN" ] ,
59
59
}
60
60
files = requests .get (get_files_url (), headers = headers ).json ()
61
61
for file in files :
You can’t perform that action at this time.
0 commit comments