Skip to main content
deleted 2 characters in body
Source Link
Ludisposed
  • 11.8k
  • 2
  • 41
  • 91

Review

  • Stick to the PEP8 style guide

1 .Functions and variables should be snake_case

  1. Constants like gitUrl should be UPPER_SNAKE_CASE
  1. Functions and variables should be snake_case
  2. Constants like gitUrl should be UPPER_SNAKE_CASE
  • There is a function for getting the current working directory

os.getcwd() Depending on your use case this might be useful

If you now what exceptions are going to be caught it is better to define them

Review

  • Stick to the PEP8 style guide

1 .Functions and variables should be snake_case

  1. Constants like gitUrl should be UPPER_SNAKE_CASE
  • There is a function for getting the current working directory

os.getcwd() Depending on your use case this might be useful

If you now what exceptions are going to be caught it is better to define them

Review

  • Stick to the PEP8 style guide
  1. Functions and variables should be snake_case
  2. Constants like gitUrl should be UPPER_SNAKE_CASE
  • There is a function for getting the current working directory

os.getcwd() Depending on your use case this might be useful

If you now what exceptions are going to be caught it is better to define them

Source Link
Ludisposed
  • 11.8k
  • 2
  • 41
  • 91

Review

  • Stick to the PEP8 style guide

1 .Functions and variables should be snake_case

  1. Constants like gitUrl should be UPPER_SNAKE_CASE
  • There is a function for getting the current working directory

os.getcwd() Depending on your use case this might be useful

If you now what exceptions are going to be caught it is better to define them